<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,14 +4,12 @@ module Spec
       
       it 'should raise an ExamplePendingError if no block is supplied' do
         lambda {
-          include Pending
           pending &quot;TODO&quot;
         }.should raise_error(ExamplePendingError, /TODO/)
       end
       
       it 'should raise an ExamplePendingError if a supplied block fails as expected' do
         lambda {
-          include Pending
           pending &quot;TODO&quot; do
             raise &quot;oops&quot;
           end
@@ -20,7 +18,6 @@ module Spec
       
       it 'should raise an ExamplePendingError if a supplied block fails as expected with a mock' do
         lambda {
-          include Pending
           pending &quot;TODO&quot; do
             m = mock('thing')
             m.should_receive(:foo)
@@ -31,7 +28,6 @@ module Spec
       
       it 'should raise a PendingExampleFixedError if a supplied block starts working' do
         lambda {
-          include Pending
           pending &quot;TODO&quot; do
             # success!
           end
@@ -40,9 +36,8 @@ module Spec
       
       it &quot;should have the correct file and line number for pending given with a block which fails&quot; do
         file = __FILE__
-        line_number = __LINE__ + 3
+        line_number = __LINE__ + 2
         begin
-          include Pending
           pending do
             raise
           end
@@ -53,9 +48,8 @@ module Spec
       
       it &quot;should have the correct file and line number for pending given with no block&quot; do
         file = __FILE__
-        line_number = __LINE__ + 3
+        line_number = __LINE__ + 2
         begin
-          include Pending
           pending(&quot;TODO&quot;)
         rescue =&gt; error
           error.pending_caller.should == &quot;#{file}:#{line_number}&quot;</diff>
      <filename>spec/spec/example/pending_module_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>83638f2b72b1b682904ca91bab040224520c792e</id>
    </parent>
  </parents>
  <author>
    <name>Joseph Wilk</name>
    <email>josephwilk@joesniff.co.uk</email>
  </author>
  <url>http://github.com/dchelimsky/rspec/commit/2886d9eb1a343a5f5ceb1aba7787b6daa42fc7eb</url>
  <id>2886d9eb1a343a5f5ceb1aba7787b6daa42fc7eb</id>
  <committed-date>2008-12-03T08:57:05-08:00</committed-date>
  <authored-date>2008-12-03T07:52:10-08:00</authored-date>
  <message>Fixing misleading example groups where include was not resolving to module include as expected. The include was not needed so it was removed. [#621 state:resolved]</message>
  <tree>a6431771b0fb65443768ab3ed8f19116a2499473</tree>
  <committer>
    <name>David Chelimsky</name>
    <email>dchelimsky@gmail.com</email>
  </committer>
</commit>
