mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
18 lines
291 B
Ruby
18 lines
291 B
Ruby
When /^(.*) in the header$/ do |action|
|
|
within('header') do
|
|
When action
|
|
end
|
|
end
|
|
|
|
When /^(.*) in the modal window$/ do |action|
|
|
within('#fancybox-wrap') do
|
|
When action
|
|
end
|
|
end
|
|
|
|
When /^(.*) in the aspect list$/ do |action|
|
|
within('#aspect_list') do
|
|
When action
|
|
end
|
|
end
|