Skip to content

Instantly share code, notes, and snippets.

@karthiks
Created October 21, 2011 17:36
Show Gist options
  • Save karthiks/1304440 to your computer and use it in GitHub Desktop.
Save karthiks/1304440 to your computer and use it in GitHub Desktop.
The marriage of Shoulda with RSpec - Preview
describe Address do
describe "#validations" do
it { should validate_presence_of(:city) }
it { should validate_presence_of(:state) }
it { should validate_presence_of(:country) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment