We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c71ce commit 6e41ff0Copy full SHA for 6e41ff0
activejdbc/src/test/java/org/javalite/activejdbc/LazyListTest.java
@@ -19,4 +19,10 @@ public void shouldGenerateSqlWithParameters() {
19
a(Person.where("name = ? AND last_name = ?", "John", "Doe").toSql(true)
20
.endsWith(", with parameters: John, Doe")).shouldBeTrue();
21
}
22
+
23
+ @Test
24
+ public void shouldBeEqual() {
25
+ deleteAndPopulateTable("people");
26
+ the(Person.findAll().equals(Person.findAll())).shouldBeTrue();
27
+ }
28
0 commit comments