mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
10 lines
241 B
Ruby
10 lines
241 B
Ruby
require 'spec_helper'
|
|
|
|
describe Contact do
|
|
it { should validate_presence_of(:email) }
|
|
it { should validate_presence_of(:name) }
|
|
it { should validate_presence_of(:message) }
|
|
|
|
it { should allow_value("test@test.com").for(:email) }
|
|
end
|