From d6291b6cbee4a8482e3c0d02816683649f206098 Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Fri, 2 Feb 2024 16:33:08 +0000 Subject: [PATCH] Mark tests pending These are scaffolded placeholder tests anyway. Once reale features are added the skips will be removed. --- test/controllers/accounts_controller_test.rb | 4 ++++ test/controllers/pages_controller_test.rb | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/test/controllers/accounts_controller_test.rb b/test/controllers/accounts_controller_test.rb index a579d26c..64d11580 100644 --- a/test/controllers/accounts_controller_test.rb +++ b/test/controllers/accounts_controller_test.rb @@ -1,6 +1,10 @@ require "test_helper" class AccountsControllerTest < ActionDispatch::IntegrationTest + setup do + skip "Pending" + end + test "should get index" do get accounts_index_url assert_response :success diff --git a/test/controllers/pages_controller_test.rb b/test/controllers/pages_controller_test.rb index d975bb19..9aecfccb 100644 --- a/test/controllers/pages_controller_test.rb +++ b/test/controllers/pages_controller_test.rb @@ -1,6 +1,10 @@ require "test_helper" class PagesControllerTest < ActionDispatch::IntegrationTest + setup do + skip "Pending" + end + test "should get index" do get pages_index_url assert_response :success