diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-08-17 15:23:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-08-17 15:23:49 (GMT) |
commit | 1c058969f08127a16e91339f83fc824493ac28cb (patch) | |
tree | 2a6eb020aa974d90a04c4220556ea8c3959bb93c /tests/oo.test | |
parent | 538b31bdc34b5021d70dfbe2a2787a1293f225a8 (diff) | |
download | tcl-1c058969f08127a16e91339f83fc824493ac28cb.zip tcl-1c058969f08127a16e91339f83fc824493ac28cb.tar.gz tcl-1c058969f08127a16e91339f83fc824493ac28cb.tar.bz2 |
[7d52e1101b] oo::object should know that oo::class is a subclass.
Diffstat (limited to 'tests/oo.test')
-rw-r--r-- | tests/oo.test | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/oo.test b/tests/oo.test index fcd9818..8c515da 100644 --- a/tests/oo.test +++ b/tests/oo.test @@ -283,6 +283,23 @@ test oo-1.20 {basic test of OO functionality: my teardown post rename} -body { obj destroy info commands ::AGlobalName } -result {} +test oo-1.21 {basic test of OO functionality: default relations} -setup { + set fresh [interp create] +} -body { + lmap x [$fresh eval { + foreach cmd {instances subclasses mixins superclass} { + foreach initial {object class Slot} { + lappend x [info class $cmd ::oo::$initial] + } + } + foreach initial {object class Slot} { + lappend x [info object class ::oo::$initial] + } + return $x + }] {lsort $x} +} -cleanup { + interp delete $fresh +} -result {{} {::oo::Slot ::oo::class ::oo::object} {::oo::define::filter ::oo::define::mixin ::oo::define::superclass ::oo::define::variable ::oo::objdefine::filter ::oo::objdefine::mixin ::oo::objdefine::variable} {::oo::Slot ::oo::class} {} {} {} {} {} {} ::oo::object ::oo::object ::oo::class ::oo::class ::oo::class} test oo-2.1 {basic test of OO functionality: constructor} -setup { # This is a bit complex because it needs to run in a sub-interp as |