41 lines
No EOL
965 B
Ruby
41 lines
No EOL
965 B
Ruby
When /^I trumpet$/ do
|
|
visit new_post_path
|
|
end
|
|
|
|
When /^I write "([^"]*)"$/ do |text|
|
|
fill_in :text, :with => text
|
|
end
|
|
|
|
Then /I mention "([^"]*)"$/ do |text|
|
|
fill_in_autocomplete('textarea.text', '@a')
|
|
sleep(5)
|
|
find("li.active").click
|
|
end
|
|
|
|
def fill_in_autocomplete(selector, value)
|
|
page.execute_script %Q{$('#{selector}').val('#{value}').keyup()}
|
|
end
|
|
|
|
|
|
def aspects_dropdown
|
|
find(".dropdown-toggle")
|
|
end
|
|
|
|
def select_from_dropdown(option_text, dropdown)
|
|
dropdown.click
|
|
within ".dropdown-menu" do
|
|
link = find("a:contains('#{option_text}')")
|
|
link.should be_visible
|
|
link.click
|
|
end
|
|
#assert dropdown text is link
|
|
end
|
|
|
|
When /^I select "([^"]*)" in my aspects dropdown$/ do |title|
|
|
within ".aspect_selector" do
|
|
select_from_dropdown(title, aspects_dropdown)
|
|
end
|
|
end
|
|
Then /^"([^"]*)" should be a (limited|public) post in my stream$/ do |post_text, scope|
|
|
find_post_by_text(post_text).find(".post_scope").text.should =~ /#{scope}/i
|
|
end |