mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* Add new settings routes and controllers * Add new settings view, restructure controllers and routes * Fix lint errors
11 lines
233 B
Ruby
11 lines
233 B
Ruby
require "test_helper"
|
|
|
|
class Settings::SecuritiesControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in users(:family_admin)
|
|
end
|
|
test "get" do
|
|
get settings_security_url
|
|
assert_response :success
|
|
end
|
|
end
|