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.
22 lines
396 B
Ruby
22 lines
396 B
Ruby
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
|