1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00

Mark tests pending

These are scaffolded placeholder tests anyway.  Once reale features are
added the skips will be removed.
This commit is contained in:
Rob Zolkos 2024-02-02 16:33:08 +00:00
parent 5f50ea3f02
commit d6291b6cbe
2 changed files with 8 additions and 0 deletions

View file

@ -1,6 +1,10 @@
require "test_helper" require "test_helper"
class AccountsControllerTest < ActionDispatch::IntegrationTest class AccountsControllerTest < ActionDispatch::IntegrationTest
setup do
skip "Pending"
end
test "should get index" do test "should get index" do
get accounts_index_url get accounts_index_url
assert_response :success assert_response :success

View file

@ -1,6 +1,10 @@
require "test_helper" require "test_helper"
class PagesControllerTest < ActionDispatch::IntegrationTest class PagesControllerTest < ActionDispatch::IntegrationTest
setup do
skip "Pending"
end
test "should get index" do test "should get index" do
get pages_index_url get pages_index_url
assert_response :success assert_response :success