Remove test for functional removed in saved searches controller

This commit is contained in:
Kira 2019-09-09 09:35:15 -07:00
parent 8659b908ed
commit 3bb09d778c

View File

@ -24,11 +24,6 @@ class SavedSearchesControllerTest < ActionDispatch::IntegrationTest
post_auth saved_searches_path, @user, params: { saved_search: { query: "bkub", label_string: "artist" }}
assert_response :redirect
end
should "disable labels when the disable_labels param is given" do
post_auth saved_searches_path, @user, params: { saved_search: { query: "bkub", disable_labels: "1" }}
assert_equal(true, @user.reload.disable_categorized_saved_searches)
end
end
context "edit action" do