We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d1dd6 commit e628e97Copy full SHA for e628e97
src/test/scala/org/squeryl/test/UuidTests.scala
@@ -77,6 +77,12 @@ abstract class UuidTests extends SchemaTester with RunTestsInsideTransaction{
77
78
uuidWithOption.lookup(testObject.id).get.optionalUuid should equal(Some(uuid))
79
80
+ update(uuidWithOption)(p =>
81
+ where(p.id === testObject.id)
82
+ set(p.optionalUuid := None)
83
+ )
84
+
85
+ uuidWithOption.lookup(testObject.id).get.optionalUuid should equal(None)
86
}
87
88
test("UuidAsId") {
0 commit comments