Sha256: 9d7501850dd612a3a1d6a441bff04a05af5c104c7c410de31f25230a7a38a5dd
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 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_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: 30 } 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.2.2 | test_rails/system/test_help_test.rb |