}
@Test
public void testBatchUpdateAll() {
deleteAndPopulateTable("people");
expect(new DifferenceExpectation(Person.find("last_name like ?", "Smith").size()) {
public Object exec() {
Person.updateAll("last_name = ?", "Smith");
return Person.find("last_name like ?", "Smith").size();
}
} );