1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/test/controllers/pages_controller_test.rb
Rob Zolkos d6291b6cbe Mark tests pending
These are scaffolded placeholder tests anyway.  Once reale features are
added the skips will be removed.
2024-02-02 16:33:08 +00:00

12 lines
212 B
Ruby

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