mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 06:09:38 +02:00
12 lines
233 B
Ruby
12 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
|