Sha256: 8e9ae16f7c1f54688ca4f54d68c6bf47f0cbb5ce2cc9eb42f92fef0ddfa3dddd
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
require_relative "../helper" # Not worth trying to test on old Rails versions return unless Rails::VERSION::MAJOR >= 7 require "capybara/cuprite" require "flipper" require "flipper/test_help" require "action_controller/railtie" require 'action_dispatch/system_testing/server' ActionDispatch::SystemTesting::Server.silence_puma = true class TestApp < Rails::Application config.load_defaults "#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}" config.eager_load = false config.logger = ActiveSupport::Logger.new(StringIO.new) routes.append do root to: "features#index" end end TestApp.initialize! class FeaturesController < ActionController::Base def index render json: Flipper.enabled?(:test) ? "Enabled" : "Disabled" end end class TestHelpTest < ActionDispatch::SystemTestCase # Any driver that runs the app in a separate thread will test what we want here. driven_by :cuprite, options: { process_timeout: 60 } setup do # Reconfigure Flipper since other tests change the adapter. flipper_configure # Ensure this test uses this app instance Rails.application = TestApp.instance end test "configures a shared adapter between tests and app" do Flipper.disable(:test) visit "/" assert_selector "*", text: "Disabled" Flipper.enable(:test) visit "/" assert_selector "*", text: "Enabled" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flipper-1.3.2 | test_rails/system/test_help_test.rb |