mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
These are scaffolded placeholder tests anyway. Once reale features are added the skips will be removed.
12 lines
212 B
Ruby
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
|