1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 05:25:24 +02:00

Merge pull request #251 from aviflombaum/reset-tests

Clear out broken tests
This commit is contained in:
Josh Pigford 2024-02-02 11:38:21 -06:00 committed by GitHub
commit f64a2eb76f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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