box-o-sand/oldstuff/RubyFun/rails/gerbil/spec/models/person_spec.rb

13 lines
212 B
Ruby
Raw Normal View History

2011-11-14 12:42:13 +00:00
require 'spec_helper'
describe Person do
it "can be instantiated" do
Person.new.should be_an_instance_of(Person)
end
it "can be saved successfully" do
Person.create.should be_persisted
end
2011-11-14 12:42:13 +00:00
end