mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
12 lines
237 B
Ruby
12 lines
237 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class Settings::PreferencesControllerTest < ActionDispatch::IntegrationTest
|
||
|
setup do
|
||
|
sign_in users(:family_admin)
|
||
|
end
|
||
|
test "get" do
|
||
|
get settings_preferences_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
end
|