Sha256: c6c8b1ff8908c3022a0668b65ee2397fb2e4da5d257a5fbaa4eb0df75300147c
Contents?: true
Size: 1.48 KB
Versions: 8
Compression:
Stored size: 1.48 KB
Contents
require 'rspec/core/extensions' require 'rspec/core/load_path' require 'rspec/core/deprecation' require 'rspec/core/backward_compatibility' require 'rspec/core/reporter' require 'rspec/core/hooks' require 'rspec/core/subject' require 'rspec/core/let' require 'rspec/core/metadata' require 'rspec/core/pending' require 'rspec/core/world' require 'rspec/core/configuration' require 'rspec/core/command_line_configuration' require 'rspec/core/option_parser' require 'rspec/core/configuration_options' require 'rspec/core/command_line' require 'rspec/core/drb_command_line' require 'rspec/core/runner' require 'rspec/core/example' require 'rspec/core/shared_context' require 'rspec/core/shared_example_group' require 'rspec/core/example_group' require 'rspec/core/version' require 'rspec/core/errors' module RSpec autoload :Matchers, 'rspec/matchers' SharedContext = Core::SharedContext module Core def self.install_directory @install_directory ||= File.expand_path(File.dirname(__FILE__)) end end def self.wants_to_quit world.wants_to_quit end def self.wants_to_quit=(maybe) world.wants_to_quit=(maybe) end def self.world @world ||= RSpec::Core::World.new end def self.configuration @configuration ||= RSpec::Core::Configuration.new end def self.configure yield configuration if block_given? end def self.clear_remaining_example_groups world.example_groups.clear end end require 'rspec/core/backward_compatibility' require 'rspec/monkey'
Version data entries
8 entries across 8 versions & 2 rubygems