mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Add new settings routes and controllers * Add new settings view, restructure controllers and routes * Fix lint errors
12 lines
238 B
Ruby
12 lines
238 B
Ruby
require "test_helper"
|
|
|
|
class Settings::ProfilesControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in @user = users(:family_admin)
|
|
end
|
|
test "get" do
|
|
get settings_profile_url
|
|
assert_response :success
|
|
end
|
|
end
|