Sha256: fe3580e84d4fa01ace23522e7fd44fcd9438298141efbe733a02fdb3a2565446
Contents?: true
Size: 365 Bytes
Versions: 35
Compression:
Stored size: 365 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
35 entries across 35 versions & 5 rubygems