mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
* Add new settings routes and controllers * Add new settings view, restructure controllers and routes * Fix lint errors
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
|