<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitmodules</filename>
    </added>
    <added>
      <filename>config/environments/cucumber.rb</filename>
    </added>
    <added>
      <filename>features/manage_signups.feature</filename>
    </added>
    <added>
      <filename>features/step_definitions/signup_steps.rb</filename>
    </added>
    <added>
      <filename>features/step_definitions/webrat_steps.rb</filename>
    </added>
    <added>
      <filename>features/support/env.rb</filename>
    </added>
    <added>
      <filename>features/support/paths.rb</filename>
    </added>
    <added>
      <filename>lib/tasks/cucumber.rake</filename>
    </added>
    <added>
      <filename>script/cucumber</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -23,6 +23,7 @@ Rails::Initializer.run do |config|
   # config.gem &quot;aws-s3&quot;, :lib =&gt; &quot;aws/s3&quot;
   config.gem 'gchartrb', :lib =&gt; 'google_chart'
   config.gem 'hpricot'
+  config.gem 'cucumber'
   config.gem 'webrat'
   config.gem 'color-tools', :lib =&gt; 'color'
   config.gem 'haml'
@@ -30,8 +31,6 @@ Rails::Initializer.run do |config|
       :source =&gt; 'http://gems.github.com'
   config.gem 'thoughtbot-factory_girl', :lib =&gt; 'factory_girl', :source =&gt; 'http://gems.github.com'
   config.gem &quot;thoughtbot-shoulda&quot;, :lib =&gt; &quot;shoulda&quot;, :source =&gt; &quot;http://gems.github.com&quot;
-  config.gem 'jeremymcanally-context', :lib =&gt; 'context', :source =&gt; 'http://gems.github.com'
-  config.gem 'jeremymcanally-matchy', :lib =&gt; 'matchy', :source =&gt; 'http://gems.github.com'
 
   # Only load the plugins named here, by default all plugins in vendor/plugins are loaded
   # config.plugins = %W( exception_notification ssl_requirement )</diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,43 +2,43 @@ require File.dirname(__FILE__) + '/../test_helper'
 
 class AccountTest &lt; Test::Unit::TestCase
   context &quot;An Account&quot; do
-    before do
+    setup do
       @account = Account.new
     end
     
-    it &quot;should require a name&quot; do
+    should &quot;require a name&quot; do
       @account.name = ''
       @account.domain = 'test'
       assert !@account.valid?
-      @account.errors[:name].should == &quot;can't be blank&quot;
+      assert_equal &quot;can't be blank&quot;, @account.errors[:name]
     end
     
-    it &quot;should not allow 'a test' as a domain&quot; do
+    should &quot;not allow 'a test' as a domain&quot; do
       @account.name = 'A test'
       @account.domain = 'a test'
       assert !@account.valid?
     end
     
-    it &quot;should allow 'test' as a domain&quot; do
+    should &quot;allow 'test' as a domain&quot; do
       @account.name = 'Test'
       @account.domain = 'test'
       assert @account.valid?
     end
     
-    it &quot;should not allow 'Test' as a domain&quot; do
+    should &quot;not allow 'Test' as a domain&quot; do
       @account.name = 'Test'
       @account.domain = 'Test'
       assert !@account.valid?
     end
     
-    it &quot;should not allow 2 accounts to have the same domain&quot; do
+    should &quot;not allow 2 accounts to have the same domain&quot; do
       @account.name = 'Test 1'
       @account.domain = 'test'
       @account.save!
       
       other_account = Account.new(:name =&gt; 'Test 2', :domain =&gt; 'test')
       assert !other_account.save
-      other_account.errors[:domain].should == 'has already been taken'
+      assert_equal 'has already been taken', other_account.errors[:domain]
     end
   end
 end</diff>
      <filename>test/unit/account_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,17 +2,17 @@ require File.dirname(__FILE__) + '/../test_helper'
 
 class CommentTest &lt; Test::Unit::TestCase
   context &quot;A Comment&quot; do
-    before do
+    setup do
       @match = Factory(:match)
     end
 
-    it &quot;should create a log entry&quot; do
+    should &quot;create a log entry&quot; do
       log_count = Log.count
       Factory(:comment, :match =&gt; @match)
       assert_equal log_count + 1, Log.count
     end
 
-    it &quot;should create a log entry linking to the game&quot; do
+    should &quot;create a log entry linking to the game&quot; do
       log_count = Log.count(:conditions =&gt; { :game_id =&gt; @match.game_id })
       Factory(:comment, :match =&gt; @match)
       assert_equal log_count + 1, Log.count(:conditions =&gt; { :game_id =&gt; @match.game_id })</diff>
      <filename>test/unit/comment_test.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>vendor/plugins/webrat/.gitignore</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/History.txt</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/MIT-LICENSE.txt</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/Manifest.txt</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/README.txt</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/Rakefile</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/TODO.txt</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/init.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/install.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/field.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/form.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/label.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/link.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/logging.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/page.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/redirect_actions.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/lib/webrat/select_option.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/attaches_file_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/checks_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/chooses_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/clicks_button_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/clicks_link_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/fills_in_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/rcov.opts</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/reloads_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/selects_spec.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/spec.opts</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/spec_helper.rb</filename>
    </removed>
    <removed>
      <filename>vendor/plugins/webrat/spec/visits_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>a12a6beaa36b193076d8c11c45781cb6f8be49bf</id>
    </parent>
  </parents>
  <author>
    <name>Lars G. Sehested</name>
    <email>lars@larssehested.com</email>
  </author>
  <url>http://github.com/larssg/score-keeper/commit/7a8b185f36c4ad44e979edafa387cbdb09d3da26</url>
  <id>7a8b185f36c4ad44e979edafa387cbdb09d3da26</id>
  <committed-date>2009-06-28T14:34:13-07:00</committed-date>
  <authored-date>2009-06-28T14:34:13-07:00</authored-date>
  <message>Install cucumber. Remove webrat plugin - using gem</message>
  <tree>3bf2371928874470ea44712f6924738c094d20a9</tree>
  <committer>
    <name>Lars G. Sehested</name>
    <email>lars@larssehested.com</email>
  </committer>
</commit>
