simple_assertions ================= Overview -------- Simple Assertions is a set of test assertions used often for Rails development Adds the following Test::Unit::Assertions: assert_false(boolean, message=nil) assert_invalid(model, options={}, message=nil) assert_difference(object, method, &block) assert_no_difference(object, method, &block) assert_presence_of(attribute, options) assert_length_of(attribute, model, options) assert_numericality_of(attribute, options) assert_uniqueness_of(attribute, options) assert_has_many(relationship, options) assert_belongs_to(relationship, model) assert_has_one(relationship, model) assert_attribute(attribute, object) AUTHORS ------- Josh Knowles Matt Heidemann Copyright (c) 2006 Integrum Technologies, LLC, released under the MIT license