1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 05:39:39 +02:00
Maybe/test/controllers/accounts_controller_test.rb

23 lines
396 B
Ruby
Raw Normal View History

2024-02-02 09:05:04 -06:00
require "test_helper"
class AccountsControllerTest < ActionDispatch::IntegrationTest
setup do
skip "Pending"
end
2024-02-02 09:05:04 -06:00
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