Sha256: 1d5b05cf9cdfa0c3c67846f3f7f8fc418e77eee052a5ae3b2c09bca3734ca7e1
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
class ::RSpec::Core::Ordering::Random # there are a lot of these in the RSpec specs that create noise HIDE_RANDOM_WARNINGS = true end # dealing with dynamic requires require 'rspec/support' require 'rspec/support/spec/deprecation_helpers' require 'rspec/support/spec/with_isolated_stderr' require 'rspec/support/spec/stderr_splitter' require 'rspec/support/spec/formatting_support' require 'rspec/support/spec/with_isolated_directory' require 'rspec/support/spec/in_sub_process' require 'rspec/support/ruby_features' require 'support/shared_example_groups' require 'support/helper_methods' require 'support/matchers' require 'support/formatter_support' require 'support/config_options_helper' require 'fixes/sandboxing' require 'fixes/missing_constants' require 'fixes/shared_examples' require 'rspec/support/spec' require 'opal/fixes/deprecation_helpers' require 'opal/fixes/rspec_helpers' require 'filters' module StubWriteFile def write_file(filename, content) # noop end end RSpec.configure do |config| #c.full_description = 'uses the default color for the shared example backtrace line' config.add_formatter RSpec::Core::Formatters::JsonFormatter, '/tmp/rspec-core-results.json' config.add_formatter RSpec::Core::Formatters::ProgressFormatter, $stdout config.include StubWriteFile config.filter_run_excluding type: :drb config.filter_run_excluding isolated_directory: true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opal-rspec-0.7.0.rc.1 | rspec-core/spec/requires.rb |