X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=tests%2Ftest-ooddl.lisp;fp=tests%2Ftest-ooddl.lisp;h=ba671e603d1459a6c11f95aab4c4051f435324b2;hp=3bbaa2d1d7f44a568660753c82d95aeb958139eb;hb=b43e20a168dae4ae9d176ebc0fbf18ea6e4517dc;hpb=a91ef336e5401ba5acbe0cf66447eeae7d4cad50 diff --git a/tests/test-ooddl.lisp b/tests/test-ooddl.lisp index 3bbaa2d..ba671e6 100644 --- a/tests/test-ooddl.lisp +++ b/tests/test-ooddl.lisp @@ -26,25 +26,25 @@ ;; Ensure slots inherited from standard-classes are :virtual (deftest :ooddl/metaclass/1 (values - (clsql-sys::view-class-slot-db-kind - (clsql-sys::slotdef-for-slot-with-class 'extraterrestrial + (clsql::view-class-slot-db-kind + (clsql::slotdef-for-slot-with-class 'extraterrestrial (find-class 'person))) - (clsql-sys::view-class-slot-db-kind - (clsql-sys::slotdef-for-slot-with-class 'hobby (find-class 'person)))) + (clsql::view-class-slot-db-kind + (clsql::slotdef-for-slot-with-class 'hobby (find-class 'person)))) :virtual :virtual) ;; Ensure all slots in view-class are view-class-effective-slot-definition (deftest :ooddl/metaclass/2 (values (every #'(lambda (slotd) - (typep slotd 'clsql-sys::view-class-effective-slot-definition)) - (clsql-sys::class-slots (find-class 'person))) + (typep slotd 'clsql::view-class-effective-slot-definition)) + (clsql::class-slots (find-class 'person))) (every #'(lambda (slotd) - (typep slotd 'clsql-sys::view-class-effective-slot-definition)) - (clsql-sys::class-slots (find-class 'employee))) + (typep slotd 'clsql::view-class-effective-slot-definition)) + (clsql::class-slots (find-class 'employee))) (every #'(lambda (slotd) - (typep slotd 'clsql-sys::view-class-effective-slot-definition)) - (clsql-sys::class-slots (find-class 'company)))) + (typep slotd 'clsql::view-class-effective-slot-definition)) + (clsql::class-slots (find-class 'company)))) t t t) (deftest :ooddl/join/1