fix incorrectly moved spinach step

5-0-stable
Dmitriy Zaporozhets 2013-03-19 17:53:21 +02:00
parent 4403f71f45
commit 0cbb235c3e
2 changed files with 6 additions and 6 deletions

View File

@ -15,10 +15,4 @@ class ProjectWall < Spinach::FeatureSteps
Then 'I should see project wall note "my special test message"' do
page.should have_content "my special test message"
end
Then 'I should see comment "XML attached"' do
within(".note") do
page.should have_content("XML attached")
end
end
end

View File

@ -96,4 +96,10 @@ module SharedNote
page.should have_css(".js-note-preview-button", visible: true)
end
end
Then 'I should see comment "XML attached"' do
within(".note") do
page.should have_content("XML attached")
end
end
end