Remove duplicate test steps

This commit is contained in:
goobertron 2014-01-13 18:47:47 +00:00
parent 706b11b14d
commit 29a98ddc29

View file

@ -6,16 +6,3 @@ And /^I mark myself as safe for work$/ do
uncheck('profile[nsfw]')
end
And /^the "profile[nsfw]" checkbox should be checked$/ do |label, selector|
with_scope(selector) do
field_checked = find_field(label)['checked']
field_checked.should be_true
end
end
And /^the "profile[nsfw]" checkbox should not be checked$/ do |label, selector|
with_scope(selector) do
field_checked = find_field(label)['checked']
field_checked.should be_false
end
end