9 lines
232 B
Ruby
9 lines
232 B
Ruby
require 'spec_helper'
|
|
|
|
describe UserPreference, :type => :model do
|
|
|
|
it 'should only allow valid email types to exist' do
|
|
pref = alice.user_preferences.new(:email_type => 'not_valid')
|
|
expect(pref).not_to be_valid
|
|
end
|
|
end
|