search for: agycodes

Displaying 1 result from an estimated 1 matches for "agycodes".

Did you mean: agycode
2007 May 06
1
validates_uniqueness_of (with :scope) doesn't seem to work?
...formation Agycode fields (id, project_id, descr) Here''s the declaration in the Agycode.rb validates_uniqueness_of *:descr*, *:scope* => "project_id" Here''s the test that SHOULDN''T pass but it does *def* test_should_fail_duplicate_descr record1 = *@project*.agycodes.*new*(*:descr* => "description") record2 = record1 assert record1.save, "Save Record" assert_valid(record1) assert record2.save, "Save Record" assert_valid(record2) *end* By the way, do you know how one would write the opposite of "assert_valid"? Thank yo...