Index: tests/destroy.test =================================================================== diff -u -rcc751d3067631542fabfb7205286e1a8757c60ca -re3a84e351aaf79c02a63cc0741dde7b9bd550849 --- tests/destroy.test (.../destroy.test) (revision cc751d3067631542fabfb7205286e1a8757c60ca) +++ tests/destroy.test (.../destroy.test) (revision e3a84e351aaf79c02a63cc0741dde7b9bd550849) @@ -5,7 +5,7 @@ Test parameter count 10 -::nsf::alias ::nx::Object set -frame object ::set +::nsf::method::alias ::nx::Object set -frame object ::set Class create O -superclass Object { :method init {} { @@ -437,7 +437,7 @@ Test case deleting-aliased-object { Object create o Object create o2 - ::nsf::alias o a o2 + ::nsf::method::alias o a o2 ? {o a} ::o2 "call object via alias" ? {o info method type a} alias ## the ensemble-object needs per-object methods @@ -457,7 +457,7 @@ Test case deleting-object-with-alias-to-object Object create o Object create o3 -::nsf::alias o x o3 +::nsf::method::alias o x o3 o destroy ? {::nsf::isobject o} 0 "parent object gone" ? {::nsf::isobject o3} 1 "aliased object still here" @@ -468,7 +468,7 @@ Test case create-alias-delete-via-aggregation Object create o Object create o3 -::nsf::alias o x o3 +::nsf::method::alias o x o3 o::x destroy ? {::nsf::isobject o3} 0 "aliased object destroyed" o destroy