13 lines
222 B
Ruby
13 lines
222 B
Ruby
require "test_helper"
|
|
|
|
class Accounts::SettingsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in_as :kevin
|
|
end
|
|
|
|
test "show" do
|
|
get account_settings_path
|
|
assert_response :success
|
|
end
|
|
end
|