require File.join(File.dirname(__FILE__), "validation_matcher_spec_support") describe Person, "(basic specs)" do it "should start with no records" do Person.find(:all).should have(0).records end it "should be able to add records" do Person.create! :firstname => "Nicholas", :lastname => "Evans" Person.create! :firstname => "David", :lastname => "Chelimsky" Person.find(:all).should have(2).records end end