<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -30,9 +30,6 @@ module Test #:nodoc:
         end
       end
       
-      # Hook into fixtures loading lifecycle to instead load scenarios. This
-      # is expected to be called in a fashion respective of
-      # use_transactional_fixtures. I feel like a leech.
       def load_fixtures
         if !scenarios_loaded? || !use_transactional_fixtures?
           if !use_transactional_fixtures? || data_session.nil?</diff>
      <filename>lib/scenarios/extensions/test_case.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,6 @@
 module Scenarios
-  # This helper module contains the #create_record method. It is made
-  # available to all Scenario instances, test and example classes, and test
-  # and example instances.
+  # This helper module provides the table writing methods that are available
+  # in a scenario's load method and in your tests.
   module TableMethods
     delegate :record_metas, :to =&gt; :data_session
     </diff>
      <filename>lib/scenarios/table_methods.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,4 @@
+ENV['PLUGIT_ENV'] = 'released'
 require File.expand_path(File.dirname(__FILE__) + &quot;/spec_helper&quot;)
 
 class ExplodesOnSecondInstantiationScenario &lt; Scenario::Base
@@ -8,7 +9,7 @@ class ExplodesOnSecondInstantiationScenario &lt; Scenario::Base
   end
 end
 
-describe &quot;Scenario loading&quot; do
+describe &quot;Scenario loading 1&quot; do
   scenario :explodes_on_second_instantiation
   
   it &quot;should work&quot; do
@@ -16,9 +17,42 @@ describe &quot;Scenario loading&quot; do
   
   it 'should work again' do
   end
+  
+  describe &quot;test subclasses&quot; do
+    it 'should work again' do
+    end
+  end
+end
+
+describe &quot;Scenario loading 2&quot; do
+  scenario :things
+  
+  describe &quot;test subclasses 1&quot; do
+    it 'should use the scenarios of superclass' do
+      Thing.count.should &gt; 0
+    end
+    
+    it 'should only load once' do
+      
+    end
+  end
+  
+  describe &quot;test subclasses 2&quot; do
+    scenario :places
+    
+    it 'will delete data from superclass if they declare their own scenarios' do
+      Thing.count.should == 0
+    end
+  end
+  
+  describe &quot;test subclasses 3&quot; do
+    it 'should still have access to things' do
+      Thing.count.should &gt; 0 
+    end
+  end
 end
 
-describe &quot;Scenario loading&quot; do
+describe &quot;Scenario loading 3&quot; do
   it &quot;should load from configured directories&quot; do
     Scenario.load(:empty)
     EmptyScenario</diff>
      <filename>spec/scenarios_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
 require 'rubygems'
-gem 'plugit'
 require 'plugit'
 
 $LOAD_PATH &lt;&lt; File.expand_path(&quot;#{File.dirname(__FILE__)}/../lib&quot;)
@@ -27,17 +26,17 @@ Plugit.describe do |scenarios|
   end
   
   scenarios.environment :released, 'Released versions of Rails and RSpec' do |env|
-    env.library :rails, :export =&gt; &quot;git clone git://github.com/rails/rails.git&quot; do |rails|
-      rails.after_update { `git co v2.1.0_RC1` }
+    env.library :rails, :export =&gt; &quot;git clone git://github.com/rails/rails.git --depth 1&quot; do |rails|
+      rails.after_update { `git co v2.1.2` }
       rails.load_paths = %w{/activesupport/lib /activerecord/lib /actionpack/lib}
       rails.requires = %w{active_support active_record action_controller action_view}
     end
-    env.library :rspec, :export =&gt; &quot;git clone git://github.com/dchelimsky/rspec.git&quot; do |rspec|
-      rspec.after_update { `git co 1.1.4 &amp;&amp; mkdir -p #{vendor_directory} &amp;&amp; ln -sF #{File.expand_path('.')} #{vendor_directory + '/rspec'}` }
+    env.library :rspec, :export =&gt; &quot;git clone git://github.com/dchelimsky/rspec.git --depth 1&quot; do |rspec|
+      rspec.after_update { `git co 1.1.11 &amp;&amp; mkdir -p #{vendor_directory} &amp;&amp; ln -sF #{File.expand_path('.')} #{vendor_directory + '/rspec'}` }
       rspec.requires = %w{spec}
     end
-    env.library :rspec_rails, :export =&gt; &quot;git clone git://github.com/dchelimsky/rspec-rails.git&quot; do |rspec_rails|
-      rspec_rails.after_update { `git co 1.1.4` }
+    env.library :rspec_rails, :export =&gt; &quot;git clone git://github.com/dchelimsky/rspec-rails.git --depth 1&quot; do |rspec_rails|
+      rspec_rails.after_update { `git co 1.1.11` }
       rspec_rails.requires = %w{spec/rails}
     end
   end</diff>
      <filename>testing/plugit_descriptor.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0b85396c9bd38580456e453ec27b54b47fb1521a</id>
    </parent>
  </parents>
  <author>
    <name>Adam Williams</name>
    <email>adam@thewilliams.ws</email>
  </author>
  <url>http://github.com/aiwilliams/scenarios/commit/0b75e2dabac88716f982d7e078182693dd6022f3</url>
  <id>0b75e2dabac88716f982d7e078182693dd6022f3</id>
  <committed-date>2008-11-10T11:44:32-08:00</committed-date>
  <authored-date>2008-11-10T11:44:32-08:00</authored-date>
  <message>Testing against release versions of rails/rspec</message>
  <tree>7a277e95859e13347d95c7e2bc24c9ac768951bd</tree>
  <committer>
    <name>Adam Williams</name>
    <email>adam@thewilliams.ws</email>
  </committer>
</commit>
