mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-10 07:38:10 -05:00
9 lines
239 B
Ruby
9 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|