X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=tests%2Ftest-oodml.lisp;fp=tests%2Ftest-oodml.lisp;h=8aab53799e5da8ed482439adb5c7af76b53ecdb7;hp=07d9017a5d471a14e32a6cbf7fa46be9332e008d;hb=4a30248613bca9864145306a00bb801cf5348017;hpb=a4bb1686f874b4ce4e6cac8adf75c0ecc114d683 diff --git a/tests/test-oodml.lisp b/tests/test-oodml.lisp index 07d9017..8aab537 100644 --- a/tests/test-oodml.lisp +++ b/tests/test-oodml.lisp @@ -216,6 +216,8 @@ (length (clsql:select 'artist :flatp t :caching nil))) 0) + + ;; test retrieval is deferred (deftest :oodm/retrieval/1 (with-dataset *ds-employees* @@ -304,15 +306,16 @@ ;; tests update-record-from-slot (deftest :oodml/update-records/2 (with-dataset *ds-employees* + ;(start-sql-recording :type :both) (values (employee-email (car (clsql:select 'employee :where [= 1 [slot-value 'employee 'emplid]] :flatp t :caching nil))) - (progn - (setf (slot-value employee1 'email) "lenin-nospam@soviet.org") - (clsql:update-record-from-slot employee1 'email) + (progn + (setf (slot-value employee1 'email) "lenin-nospam@soviet.org") + (clsql:update-record-from-slot employee1 'email) (employee-email (car (clsql:select 'employee :where [= 1 [slot-value 'employee 'emplid]] @@ -625,6 +628,12 @@ (list (name artist1) (artist_id artist1))) ("Mogwai" 1)) +(deftest :oodml/update-records/12 + (with-dataset *ds-artists* + (clsql:update-records-from-instance artist1) + (list (name artist1) (genre artist1))) + ("Mogwai" "Unknown")) + ;; tests update-instance-from-records (deftest :oodml/update-instance/1 (with-dataset *ds-employees*