Clear out broken tests

This commit is contained in:
Avi Flombaum
2024-02-02 11:48:37 -05:00
parent 41eb777843
commit efc882deb3
2 changed files with 0 additions and 34 deletions

View File

@@ -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

View File

@@ -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