Class: RSpec::Core::CommandLine
- Inherits:
-
Object
- Object
- RSpec::Core::CommandLine
- Defined in:
- lib/rspec/core/command_line.rb
Instance Method Summary collapse
-
#initialize(options, configuration = RSpec::configuration, world = RSpec::world) ⇒ CommandLine
constructor
A new instance of CommandLine.
- #run(err, out) ⇒ Object
Constructor Details
#initialize(options, configuration = RSpec::configuration, world = RSpec::world) ⇒ CommandLine
Returns a new instance of CommandLine.
4 5 6 7 8 9 10 11 12 |
# File 'lib/rspec/core/command_line.rb', line 4 def initialize(, configuration=RSpec::configuration, world=RSpec::world) if Array === = ConfigurationOptions.new() . end @options = @configuration = configuration @world = world end |
Instance Method Details
#run(err, out) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/rspec/core/command_line.rb', line 14 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 |