Created
June 19, 2011 08:50
-
-
Save metalelf0/1033995 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# person.rb | |
validates_presence_of :address | |
# blueprints.rb | |
Person.blueprint do | |
name { "John" } | |
surname { "Doe" } | |
address { Address.make } | |
end | |
# person_spec.rb | |
it "builds a valid person with machinist" do | |
Person.make.should be_valid | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment