Sha256: ee492619cd05debdbd0d68855a1ed9b2607a14221c80d086c8fc1db55e5447bc
Contents?: true
Size: 551 Bytes
Versions: 13
Compression:
Stored size: 551 Bytes
Contents
RSpec.configure do |config| config.default_formatter = ::RSpec::Core::Formatters::ProgressFormatter # # Have to do this in 2 places. This will ensure the default formatter gets the right IO, but need to do this here for custom formatters # # that will be constructed BEFORE Runner.autorun runs (see runner.rb) # config.output_stream = $stdout # This shouldn't be in here, but RSpec uses undef to change this configuration and that doesn't work well enough yet config.expect_with :rspec do |c| c.syntax = [:should, :expect] end end
Version data entries
13 entries across 13 versions & 1 rubygems