From efc882deb3044e6ce5ed638ed2e53e81d1ed514d Mon Sep 17 00:00:00 2001 From: Avi Flombaum <4515+aviflombaum@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:48:37 -0500 Subject: [PATCH] Clear out broken tests --- test/controllers/accounts_controller_test.rb | 22 -------------------- test/controllers/pages_controller_test.rb | 12 ----------- 2 files changed, 34 deletions(-) delete mode 100644 test/controllers/accounts_controller_test.rb delete mode 100644 test/controllers/pages_controller_test.rb diff --git a/test/controllers/accounts_controller_test.rb b/test/controllers/accounts_controller_test.rb deleted file mode 100644 index 64d11580..00000000 --- a/test/controllers/accounts_controller_test.rb +++ /dev/null @@ -1,22 +0,0 @@ -require "test_helper" - -class AccountsControllerTest < ActionDispatch::IntegrationTest - setup do - skip "Pending" - end - - test "should get index" do - get accounts_index_url - assert_response :success - end - - test "should get new" do - get accounts_new_url - assert_response :success - end - - test "should get show" do - get accounts_show_url - assert_response :success - end -end diff --git a/test/controllers/pages_controller_test.rb b/test/controllers/pages_controller_test.rb deleted file mode 100644 index 9aecfccb..00000000 --- a/test/controllers/pages_controller_test.rb +++ /dev/null @@ -1,12 +0,0 @@ -require "test_helper" - -class PagesControllerTest < ActionDispatch::IntegrationTest - setup do - skip "Pending" - end - - test "should get index" do - get pages_index_url - assert_response :success - end -end