2011-11-14 12:42:13 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Person do
|
2011-11-14 13:07:28 +00:00
|
|
|
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
|