mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
![Ryan Fitzgerald](/assets/img/avatar_default.png)
We can always get rid of this if we switch all of the specs to use `expect` instead, but until then we should probably make our RSpec configuration match how our specs are written.
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
require 'bundler/setup'
|
|
require 'pry/test/helper'
|
|
Bundler.require :default, :test
|
|
require_relative 'spec_helpers/mock_pry'
|
|
require_relative 'spec_helpers/repl_tester'
|
|
|
|
if ENV["COVERAGE"]
|
|
require "simplecov"
|
|
SimpleCov.start
|
|
end
|
|
|
|
class Module
|
|
public :remove_const
|
|
public :remove_method
|
|
end
|
|
|
|
# turn warnings off (esp for Pry::Hooks which will generate warnings
|
|
# in tests)
|
|
$VERBOSE = nil
|
|
|
|
Pad = Class.new do
|
|
include Pry::Config::Behavior
|
|
end.new(nil)
|
|
|
|
# to help with tracking down bugs that cause an infinite loop in the test suite
|
|
if ENV["SET_TRACE_FUNC"]
|
|
require 'set_trace' if Pry::Helpers::BaseHelpers.rbx?
|
|
set_trace_func proc { |event, file, line, id, binding, classname|
|
|
STDERR.printf "%8s %s:%-2d %10s %8s\n", event, file, line, id, classname
|
|
}
|
|
end
|
|
|
|
puts "Ruby v#{RUBY_VERSION} (#{defined?(RUBY_ENGINE) ? RUBY_ENGINE : "ruby"}), Pry v#{Pry::VERSION}, method_source v#{MethodSource::VERSION}, CodeRay v#{CodeRay::VERSION}, Slop v#{Slop::VERSION}"
|
|
|
|
RSpec.configure do |config|
|
|
config.expect_with :rspec do |c|
|
|
c.syntax = [:should, :expect]
|
|
end
|
|
config.alias_example_to :should
|
|
config.include PryTestHelpers
|
|
end
|