check more than two word tag checking

This commit is contained in:
Kyle Drake 2014-06-08 18:39:27 -07:00
parent e0efe996b0
commit f3c2a81e0c

View file

@ -106,6 +106,13 @@ describe 'signup' do
page.must_have_content /Tag.+cannot have more than one space/ page.must_have_content /Tag.+cannot have more than one space/
end end
it 'fails for tag with too many words' do
fill_in_valid
fill_in 'tags', with: 'police officer club'
click_button 'Create Home Page'
page.must_have_content /Tag.+cannot be more than two words/
end
it 'succeeds with no tags' do it 'succeeds with no tags' do
fill_in_valid fill_in_valid
fill_in 'tags', with: '' fill_in 'tags', with: ''