diff --git a/features/step_definitions/profile_steps.rb b/features/step_definitions/profile_steps.rb index c1caa8a46..80b148d9b 100644 --- a/features/step_definitions/profile_steps.rb +++ b/features/step_definitions/profile_steps.rb @@ -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