fix spec
This commit is contained in:
parent
ae039442c3
commit
bf12dc6bc7
1 changed files with 3 additions and 2 deletions
|
|
@ -47,14 +47,15 @@ describe Person do
|
||||||
@person.diaspora_handle.include?(APP_CONFIG[:terse_pod_url]).should be false
|
@person.diaspora_handle.include?(APP_CONFIG[:terse_pod_url]).should be false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'validation' do
|
describe 'validation' do
|
||||||
it 'is unique' do
|
it 'is unique' do
|
||||||
person_two = Factory.build(:person, :url => @person.diaspora_handle)
|
person_two = Factory.build(:person, :diaspora_handle => @person.diaspora_handle)
|
||||||
person_two.valid?.should be_false
|
person_two.valid?.should be_false
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'is case insensitive' do
|
it 'is case insensitive' do
|
||||||
person_two = Factory.build(:person, :url => @person.diaspora_handle.upcase)
|
person_two = Factory.build(:person, :url => @person.url.upcase)
|
||||||
person_two.valid?.should be_false
|
person_two.valid?.should be_false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue