summaryrefslogtreecommitdiffstats
path: root/tests/oo.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2017-06-22 21:55:45 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2017-06-22 21:55:45 (GMT)
commit7dc2f698a1f0fa20b7989be0d73fd3c20b0e66fb (patch)
tree5426008105ff16d910ebd66eaa6ac746dca429b2 /tests/oo.test
parent4c7792803aef1af6855d09024b037dc190bc249f (diff)
downloadtcl-7dc2f698a1f0fa20b7989be0d73fd3c20b0e66fb.zip
tcl-7dc2f698a1f0fa20b7989be0d73fd3c20b0e66fb.tar.gz
tcl-7dc2f698a1f0fa20b7989be0d73fd3c20b0e66fb.tar.bz2
Rebase for final implementation work
Diffstat (limited to 'tests/oo.test')
-rw-r--r--tests/oo.test35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/oo.test b/tests/oo.test
index cb37a76..5eaa8bf 100644
--- a/tests/oo.test
+++ b/tests/oo.test
@@ -2013,6 +2013,41 @@ test oo-15.10 {variable binding must not bleed through oo::copy} -setup {
} -cleanup {
FooClass destroy
} -result {foo bar grill bar}
+test oo-15.11 {OO: object cloning} -returnCodes error -body {
+ oo::copy
+} -result {wrong # args: should be "oo::copy sourceName ?targetName? ?targetNamespace?"}
+test oo-15.12 {OO: object cloning with target NS} -setup {
+ oo::class create Super
+ oo::class create Cls {superclass Super}
+} -body {
+ namespace eval ::existing {}
+ oo::copy Cls {} ::existing
+} -returnCodes error -cleanup {
+ Super destroy
+ catch {namespace delete ::existing}
+} -result {::existing refers to an existing namespace}
+test oo-15.13 {OO: object cloning with target NS} -setup {
+ oo::class create Super
+ oo::class create Cls {superclass Super}
+} -body {
+ list [namespace exist ::dupens] [oo::copy Cls Cls2 ::dupens] [namespace exist ::dupens]
+} -cleanup {
+ Super destroy
+} -result {0 ::Cls2 1}
+test oo-15.14 {OO: object cloning with target NS} -setup {
+ oo::class create Cls {export eval}
+ set result {}
+} -body {
+ Cls create obj
+ obj eval {
+ proc test-15.14 {} {}
+ }
+ lappend result [info commands ::dupens::t*]
+ oo::copy obj obj2 ::dupens
+ lappend result [info commands ::dupens::t*]
+} -cleanup {
+ Cls destroy
+} -result {{} ::dupens::test-15.14}
test oo-16.1 {OO: object introspection} -body {
info object