Sha256: eb0170d4887a8de7563bcfc4f784b95381568d085b20755ae306919cddcf40e2
Contents?: true
Size: 362 Bytes
Versions: 61
Compression:
Stored size: 362 Bytes
Contents
require File.dirname(__FILE__) + '/../../spec_helper' describe "A model" do fixtures :things it "should tell you its required fields" do Thing.new.should have(1).error_on(:name) end it "should tell you how many records it has" do Thing.should have(:no).records Thing.create(:name => "THE THING") Thing.should have(1).record end end
Version data entries
61 entries across 61 versions & 10 rubygems