87d81e608b
- Drop from 313 unused routes to 306 unused routes - Use a namespace for the account-related resource routes - Controllers are nested under the "Account" module now - Move views from "accounts/" to "account/"
13 lines
221 B
Ruby
13 lines
221 B
Ruby
require "test_helper"
|
|
|
|
class Account::SettingsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in_as :kevin
|
|
end
|
|
|
|
test "show" do
|
|
get account_settings_path
|
|
assert_response :success
|
|
end
|
|
end
|