Files
fizzy/test/controllers/accounts/settings_controller_test.rb
T
2025-06-04 13:26:10 +02:00

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