<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>examples/passing/multi_threaded_example_group_runner.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -14,10 +14,11 @@ examples set up as above.
 
 WARNING: mock.should_receive(:msg).with(an_instance_of(klass)) now correctly uses instance_of? instead of kind_of?. This may break some existing code examples, but the fix is to just use kind_of instead of an_instance_of
 
-* 2 deprecations
+* 3 deprecations
 
   * deprecated ExampleMethods#implementation_backtrace - use ExampleMethods#backtrace instead
   * deprecated ExampleGroupMethods#example_group_backtrace - use ExampleGroupMethods#backtrace instead
+  * deprecated Spec::Example::BehaviourRunner class (likely that nobody is using this)
 
 * 6 major enhancements
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -54,7 +54,17 @@ module Spec
         @options.number_of_examples
       end
     end
-    # TODO: BT - Deprecate BehaviourRunner?
-    BehaviourRunner = ExampleGroupRunner
+    
+    class BehaviourRunner &lt; ExampleGroupRunner
+      def initialize(options)
+        Kernel.warn &lt;&lt;-WARNING
+DEPRECATED: The BeheviourRunner class is deprecated and will
+be removed from rspec-1.2.
+
+Use ExampleGroupRunner instead.
+WARNING
+        super
+      end
+    end
   end
 end</diff>
      <filename>lib/spec/runner/example_group_runner.rb</filename>
    </modified>
    <modified>
      <diff>@@ -22,5 +22,12 @@ module Spec
         end
       end
     end
+    
+    describe BehaviourRunner do
+      it &quot;is DEPRECATED (use ExampleGroupRunner)&quot; do
+        Kernel.should_receive(:warn).with(/DEPRECATED/)
+        BehaviourRunner.new(nil)
+      end
+    end
   end
 end</diff>
      <filename>spec/spec/runner/example_group_runner_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>examples/passing/multi_threaded_behaviour_runner.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>c0abf744ded76c84cf1094c61e7110bfdd00ca11</id>
    </parent>
  </parents>
  <author>
    <name>David Chelimsky</name>
    <email>dchelimsky@gmail.com</email>
  </author>
  <url>http://github.com/wilson/rspec/commit/91444510df439fc7acd5a308eca574d256a4baef</url>
  <id>91444510df439fc7acd5a308eca574d256a4baef</id>
  <committed-date>2009-01-07T09:23:09-08:00</committed-date>
  <authored-date>2009-01-07T09:23:09-08:00</authored-date>
  <message>deprecate BehaviourRunner (I don't think anybody uses it)</message>
  <tree>1e9a7cdd96c542c13f25ad56a21c5a1b199acb10</tree>
  <committer>
    <name>David Chelimsky</name>
    <email>dchelimsky@gmail.com</email>
  </committer>
</commit>
