From 7293a4f4f8013ce6af452e6921d46f40d91680b3 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 20 Apr 2008 00:20:21 -0500 Subject: [PATCH] clean up the tuples tests --- extra/db/tuples/tuples-tests.factor | 36 ++++++++++++++++------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/extra/db/tuples/tuples-tests.factor b/extra/db/tuples/tuples-tests.factor index 038197d864..0648f9b254 100755 --- a/extra/db/tuples/tuples-tests.factor +++ b/extra/db/tuples/tuples-tests.factor @@ -212,9 +212,6 @@ TUPLE: serialize-me id data ; { T{ serialize-me f 1 H{ { 1 2 } } } } ] [ T{ serialize-me f 1 } select-tuples ] unit-test ; -[ test-serialize ] test-sqlite -! [ test-serialize ] test-postgresql - TUPLE: exam id name score ; : test-intervals ( -- ) @@ -288,8 +285,6 @@ TUPLE: exam id name score ; T{ exam f T{ range f 1 3 1 } } select-tuples ] unit-test ; -[ test-intervals ] test-sqlite - TUPLE: bignum-test id m n o ; : ( m n o -- obj ) bignum-test new @@ -313,15 +308,6 @@ TUPLE: bignum-test id m n o ; -9223372036854775808 9223372036854775808 -9223372036854775808 } ] [ T{ bignum-test f 1 } select-tuple ] unit-test ; -[ test-bignum ] test-sqlite - -TUPLE: does-not-persist ; - -[ - [ does-not-persist create-sql-statement ] - [ class \ not-persistent = ] must-fail-with -] test-sqlite - TUPLE: secret n message ; C: secret @@ -349,15 +335,33 @@ C: secret T{ secret } select-tuples length 3 = ] unit-test ; -[ test-random-id ] test-sqlite [ native-person-schema test-tuples ] test-sqlite [ assigned-person-schema test-tuples ] test-sqlite [ assigned-person-schema test-repeated-insert ] test-sqlite +[ test-bignum ] test-sqlite +[ test-serialize ] test-sqlite +[ test-intervals ] test-sqlite +[ test-random-id ] test-sqlite -[ test-random-id ] test-postgresql [ native-person-schema test-tuples ] test-postgresql [ assigned-person-schema test-tuples ] test-postgresql [ assigned-person-schema test-repeated-insert ] test-postgresql +[ test-bignum ] test-sqlite +[ test-serialize ] test-postgresql +! [ test-intervals ] test-postgresql +! [ test-random-id ] test-postgresql + +TUPLE: does-not-persist ; + +[ + [ does-not-persist create-sql-statement ] + [ class \ not-persistent = ] must-fail-with +] test-sqlite + +[ + [ does-not-persist create-sql-statement ] + [ class \ not-persistent = ] must-fail-with +] test-postgresql ! \ insert-tuple must-infer ! \ update-tuple must-infer