mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
* Do not show billing settings navbar item when self hosted * Do not show billing settings navbar item when self hosted * Add condition to settings helper * Let Stripe::AuthenticationError bubble up
15 lines
418 B
Ruby
15 lines
418 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_redirected_to root_path
|
|
assert_equal I18n.t("subscriptions.self_hosted_alert"), flash[:alert]
|
|
end
|
|
end
|