Files
maybe/test/controllers/subscriptions_controller_test.rb
Zach Gollwitzer 2618df8843 Fix tests
2025-05-01 15:42:08 -04:00

14 lines
340 B
Ruby

require "test_helper"
class SubscriptionsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in @user = users(:family_admin)
end
test "redirects to settings if self hosting" do
Rails.application.config.app_mode.stubs(:self_hosted?).returns(true)
get subscription_path
assert_response :forbidden
end
end