# File lib/feature/testing.rb, line 31
  def self.run_with_deactivated(*features, &blk)
    with_stashed_config do
      @active_features -= features
      @auto_refresh = false
      @perform_initial_refresh = false
      blk.call
    end
  end