capycorder
capycorder copied to clipboard
Fix: filling of test name included in output
it 'should navigate to post' do
visit('/')
fill_in('capycorder-spec-name', :with => 'should navigate to post')
click_link('“Foobar”')
page.should have_selector('h2')
end
Unfortunately this seems to be a regression caused by the implementation for #9.
Better than this work–around would probably be to use a proper form and simply bind the submit
event, since ENTER will trigger that anyways.