diaspora/features/step_definitions/profile_steps.rb
2015-02-14 02:27:32 +01:00

13 lines
286 B
Ruby

And /^I mark myself as not safe for work$/ do
check('profile[nsfw]')
end
And /^I mark myself as safe for work$/ do
uncheck('profile[nsfw]')
end
When(/^I delete a photo$/) do
find('.photo.loaded .thumbnail', :match => :first).hover
find('.delete', :match => :first).click
end