mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 14:49:38 +02:00
18 lines
359 B
Ruby
18 lines
359 B
Ruby
require "test_helper"
|
|
|
|
class AccountsControllerTest < ActionDispatch::IntegrationTest
|
|
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
|