diff options
author | Louise Crow <louise.crow@gmail.com> | 2011-02-23 12:06:34 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2011-02-23 12:06:34 +0000 |
commit | 4cd0de91754f07afd0afb58d137b3adcf5a07611 (patch) | |
tree | 1a16f0c5af85f5e7561012b027545183584e15b8 /vendor/plugins/rspec/lib/spec/runner.rb | |
parent | 44b78c1cd78607434b3666f5391ba68da647583f (diff) |
Removing rspec and rspec-rails plugins in favour of updated gems.
Diffstat (limited to 'vendor/plugins/rspec/lib/spec/runner.rb')
-rw-r--r-- | vendor/plugins/rspec/lib/spec/runner.rb | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/vendor/plugins/rspec/lib/spec/runner.rb b/vendor/plugins/rspec/lib/spec/runner.rb deleted file mode 100644 index 519b536e2..000000000 --- a/vendor/plugins/rspec/lib/spec/runner.rb +++ /dev/null @@ -1,66 +0,0 @@ -require 'spec/runner/configuration' -require 'spec/runner/options' -require 'spec/runner/option_parser' -require 'spec/runner/example_group_runner' -require 'spec/runner/command_line' -require 'spec/runner/drb_command_line' -require 'spec/runner/backtrace_tweaker' -require 'spec/runner/reporter' -require 'spec/runner/line_number_query' -require 'spec/runner/class_and_arguments_parser' -require 'spec/runner/extensions/kernel' - -module Spec - module Runner - - class ExampleGroupCreationListener - def register_example_group(klass) - Spec::Runner.options.add_example_group klass - end - end - - Spec::Example::ExampleGroupFactory.example_group_creation_listeners << ExampleGroupCreationListener.new - - class << self - def configuration # :nodoc: - @configuration ||= Spec::Runner::Configuration.new - end - - # Use this to configure various configurable aspects of - # RSpec: - # - # Spec::Runner.configure do |configuration| - # # Configure RSpec here - # end - # - # The yielded <tt>configuration</tt> object is a - # Spec::Runner::Configuration instance. See its RDoc - # for details about what you can do with it. - # - def configure - yield configuration - end - - def autorun # :nodoc: - at_exit {exit run unless $!} - end - - def options # :nodoc: - @options ||= begin - parser = ::Spec::Runner::OptionParser.new($stderr, $stdout) - parser.order!(ARGV) - parser.options - end - end - - def use options - @options = options - end - - def run - options.examples_run? || options.run_examples - end - - end - end -end
\ No newline at end of file |