Skip to content

Instantly share code, notes, and snippets.

@tanelsuurhans
Created February 13, 2013 13:01
Show Gist options
  • Save tanelsuurhans/4944441 to your computer and use it in GitHub Desktop.
Save tanelsuurhans/4944441 to your computer and use it in GitHub Desktop.
describe "validations" do
it { must validate_presence_of(:email) }
it { must ensure_length_of(:email).is_at_most(255) }
end
it "validate email" do
subject.must validate_presence_of(:email)
subject.must ensure_length_of(:email).is_at_most(255)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment