Sha256: c65ac9c5ceac093a3278be78166d7d6bf94c3e0ccee07693a24c77454263b002

Contents?: true

Size: 942 Bytes

Versions: 6

Compression:

Stored size: 942 Bytes

Contents

module RSpec
  module Core
    class CommandLine
      def initialize(options, configuration=RSpec::configuration, world=RSpec::world)
        if Array === options
          options = ConfigurationOptions.new(options)
          options.parse_options
        end
        @options       = options
        @configuration = configuration
        @world         = world
      end

      def run(err, out)
        @configuration.error_stream = err
        @configuration.output_stream ||= out
        @options.configure(@configuration)
        @configuration.load_spec_files
        @world.announce_filters

        @configuration.reporter.report(@world.example_count) do |reporter|
          begin
            @configuration.run_hook(:before, :suite)
            @world.example_groups.map {|g| g.run(reporter)}.all? ? 0 : 1
          ensure
            @configuration.run_hook(:after, :suite)
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rspec-core-2.7.0.rc1 lib/rspec/core/command_line.rb
rspec-core-2.6.4 lib/rspec/core/command_line.rb
rspec-core-2.6.3 lib/rspec/core/command_line.rb
rspec-core-2.6.3.beta1 lib/rspec/core/command_line.rb
rspec-core-2.6.2.rc lib/rspec/core/command_line.rb
rspec-core-2.6.0 lib/rspec/core/command_line.rb