Merge pull request #1078 from ryansch/remove-focus-tag

Remove :focus tag from fill_in_spec test
This commit is contained in:
Jonas Nicklas 2013-05-09 23:12:34 -07:00
commit 4842732e6d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ Capybara::SpecHelper.spec "#fill_in" do
extract_results(@session)['first_name'].should == 'Harry'
end
it "casts to string if field has maxlength", :focus => true do
it "casts to string if field has maxlength" do
@session.fill_in(:'form_zipcode', :with => 1234567)
@session.click_button('awesome')
extract_results(@session)['zipcode'].should == '12345'