aboutsummaryrefslogtreecommitdiff
path: root/tests/object.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-02-02 15:48:28 -0800
committerBruce Hill <bitbucket@bruce-hill.com>2018-02-02 15:49:42 -0800
commit505fec2a61d2571317cc4bbc36ec0f4822a63f9d (patch)
treec2b37e9db8e2f958fbca0caa0a9c4924912a37a9 /tests/object.nom
parent513c721198b2256235a95c98d161ab1bb51e6671 (diff)
Restructured the nomsu files to group all the essentials into core/ and
all the optionals into lib/. lib/core.nom and tests/all.nom are no longer needed now.
Diffstat (limited to 'tests/object.nom')
-rw-r--r--tests/object.nom5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/object.nom b/tests/object.nom
index 7dbaca6..84524e5 100644
--- a/tests/object.nom
+++ b/tests/object.nom
@@ -1,5 +1,5 @@
-use "lib/core.nom"
-use "lib/object.nom"
+use "core"
+use "lib/object2.nom"
immediately:
define object "Dog":
@@ -20,3 +20,4 @@ as %d:
assume ("\(%d's "class")" = "Dog")
assume ((%d's "barks") = 3)
+say "Object test passed."