Newer
Older
Dennis Collinson
a validé
focus_comment_box
Then /^the first comment field should be open/ do
find("#main_stream .stream_element .new_comment").should be_visible
end
Then /^the first comment field should be closed$/ do
page.should_not have_selector("#main_stream .stream_element .new_comment", match: :first)
Dennis Collinson
a validé
When /^I comment "([^"]*)" on "([^"]*)"$/ do |comment_text, post_text|
comment_on_post(post_text, comment_text)
end
When /^I make a show page comment "([^"]*)"$/ do |comment_text|
comment_on_show_page(comment_text)
end