You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fill_in:comment_body,:with=>'Here is my test comment'# have to request via ID rather than label because of the span around the optional, making it hard to find
12
12
end
13
13
14
+
When/^I click the delete comment link$/do
15
+
click_link'DELETE'
16
+
end
17
+
18
+
14
19
Then/^I see my comment on the page$/do
15
20
response.shouldinclude_text('Here is my test comment')
16
21
end
17
22
23
+
Then/^I see the delete comment link$/do
24
+
response.shouldhave_tag('a.delete-comment')
25
+
end
18
26
27
+
Then/^I do not see my comment on the page$/do
28
+
response.should_notinclude_text('Here is my test comment')
0 commit comments