<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/factories/account.rb</filename>
    </added>
    <added>
      <filename>test/factories/comment.rb</filename>
    </added>
    <added>
      <filename>test/factories/game.rb</filename>
    </added>
    <added>
      <filename>test/factories/match.rb</filename>
    </added>
    <added>
      <filename>test/factories/user.rb</filename>
    </added>
    <added>
      <filename>test/functional/games_controller_test.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -14,4 +14,5 @@ public/mugshots
 .project
 .loadpath
 nbproject
-vendor/plugins/goldspike
\ No newline at end of file
+vendor/plugins/goldspike
+db/*.sqlite3</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -8,6 +8,3 @@ require 'rake/testtask'
 require 'rake/rdoctask'
 
 require 'tasks/rails'
-
-Rake::Task[:default].prerequisites.clear
-task :default =&gt; :spec
\ No newline at end of file</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -27,8 +27,7 @@ Rails::Initializer.run do |config|
   config.gem 'color-tools', :lib =&gt; 'color'
   config.gem 'haml'
   config.gem 'thoughtbot-factory_girl', :lib =&gt; 'factory_girl', :source =&gt; 'http://gems.github.com'
-  config.gem 'rspec', :lib =&gt; 'spec'
-  config.gem 'rspec-rails', :lib =&gt; 'spec/rails'
+  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'
 </diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -28,8 +28,8 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
     t.datetime &quot;updated_at&quot;
   end
 
-  add_index &quot;comments&quot;, [&quot;user_id&quot;], :name =&gt; &quot;index_comments_on_user_id&quot;
   add_index &quot;comments&quot;, [&quot;match_id&quot;], :name =&gt; &quot;index_comments_on_game_id&quot;
+  add_index &quot;comments&quot;, [&quot;user_id&quot;], :name =&gt; &quot;index_comments_on_user_id&quot;
 
   create_table &quot;game_participations&quot;, :force =&gt; true do |t|
     t.integer  &quot;user_id&quot;
@@ -55,8 +55,6 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
     t.integer  &quot;matches_count&quot;, :default =&gt; 0
   end
 
-  add_index &quot;games&quot;, [&quot;account_id&quot;], :name =&gt; &quot;index_games_on_account_id&quot;
-
   create_table &quot;logs&quot;, :force =&gt; true do |t|
     t.integer  &quot;account_id&quot;
     t.integer  &quot;user_id&quot;
@@ -70,8 +68,8 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
   end
 
   add_index &quot;logs&quot;, [&quot;account_id&quot;], :name =&gt; &quot;index_logs_on_account_id&quot;
-  add_index &quot;logs&quot;, [&quot;published_at&quot;], :name =&gt; &quot;index_logs_on_published_at&quot;
   add_index &quot;logs&quot;, [&quot;game_id&quot;], :name =&gt; &quot;index_logs_on_game_id&quot;
+  add_index &quot;logs&quot;, [&quot;published_at&quot;], :name =&gt; &quot;index_logs_on_published_at&quot;
 
   create_table &quot;matches&quot;, :force =&gt; true do |t|
     t.datetime &quot;played_at&quot;
@@ -87,10 +85,10 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
     t.integer  &quot;game_id&quot;
   end
 
-  add_index &quot;matches&quot;, [&quot;played_on&quot;], :name =&gt; &quot;index_games_on_played_on&quot;
   add_index &quot;matches&quot;, [&quot;account_id&quot;], :name =&gt; &quot;index_games_on_account_id&quot;
   add_index &quot;matches&quot;, [&quot;game_id&quot;], :name =&gt; &quot;index_matches_on_game_id&quot;
   add_index &quot;matches&quot;, [&quot;played_at&quot;], :name =&gt; &quot;index_matches_on_played_at&quot;
+  add_index &quot;matches&quot;, [&quot;played_on&quot;], :name =&gt; &quot;index_games_on_played_on&quot;
   add_index &quot;matches&quot;, [&quot;team_one&quot;], :name =&gt; &quot;index_matches_on_team_one&quot;
   add_index &quot;matches&quot;, [&quot;team_two&quot;], :name =&gt; &quot;index_matches_on_team_two&quot;
 
@@ -105,9 +103,9 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
     t.integer  &quot;game_participation_id&quot;
   end
 
-  add_index &quot;memberships&quot;, [&quot;user_id&quot;], :name =&gt; &quot;index_memberships_on_person_id&quot;
   add_index &quot;memberships&quot;, [&quot;game_id&quot;], :name =&gt; &quot;index_memberships_on_game_id&quot;
   add_index &quot;memberships&quot;, [&quot;game_participation_id&quot;], :name =&gt; &quot;index_memberships_on_game_participation_id&quot;
+  add_index &quot;memberships&quot;, [&quot;user_id&quot;], :name =&gt; &quot;index_memberships_on_person_id&quot;
 
   create_table &quot;mugshots&quot;, :force =&gt; true do |t|
     t.integer  &quot;size&quot;
@@ -142,9 +140,9 @@ ActiveRecord::Schema.define(:version =&gt; 20081006194834) do
     t.integer  &quot;account_id&quot;
   end
 
-  add_index &quot;teams&quot;, [&quot;team_ids&quot;], :name =&gt; &quot;index_teams_on_team_ids&quot;
-  add_index &quot;teams&quot;, [&quot;opponent_ids&quot;], :name =&gt; &quot;index_teams_on_opponent_ids&quot;
   add_index &quot;teams&quot;, [&quot;account_id&quot;], :name =&gt; &quot;index_teams_on_account_id&quot;
+  add_index &quot;teams&quot;, [&quot;opponent_ids&quot;], :name =&gt; &quot;index_teams_on_opponent_ids&quot;
+  add_index &quot;teams&quot;, [&quot;team_ids&quot;], :name =&gt; &quot;index_teams_on_team_ids&quot;
 
   create_table &quot;users&quot;, :force =&gt; true do |t|
     t.string   &quot;login&quot;</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,10 +2,9 @@ ENV[&quot;RAILS_ENV&quot;] = &quot;test&quot;
 require File.expand_path(File.dirname(__FILE__) + &quot;/../config/environment&quot;)
 require 'test_help'
 
-include AuthenticatedTestHelper
-require File.join(Rails.root, 'spec/factories')
+class ActiveSupport::TestCase
+  include AuthenticatedTestHelper
 
-class Test::Unit::TestCase
   # Transactional fixtures accelerate your tests by wrapping each test method
   # in a transaction that's rolled back on completion.  This ensures that the
   # test database remains unchanged so your fixtures don't have to be reloaded
@@ -35,7 +34,7 @@ class Test::Unit::TestCase
   #
   # Note: You'll currently still have to declare fixtures explicitly in integration tests
   # -- they do not yet inherit this setting
-  fixtures :all
+  # fixtures :all
 
   # Add more helper methods to be used by all tests here...
 end</diff>
      <filename>test/test_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lang/da.yaml</filename>
    </removed>
    <removed>
      <filename>spec/controllers/accounts_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/comments_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/comparisons_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/dashboard_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/games_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/logs_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/matches_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/pages_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/sessions_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/teams_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/controllers/users_controller_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/factories.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/accounts_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/comments_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/comparisons_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/dashboard_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/games_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/logs_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/matches_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/pages_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/people_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/helpers/teams_helper_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/game_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/match_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/membership_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/mugshot_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/news_item_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/team_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/models/user_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/rcov.opts</filename>
    </removed>
    <removed>
      <filename>spec/spec.opts</filename>
    </removed>
    <removed>
      <filename>spec/spec_helper.rb</filename>
    </removed>
    <removed>
      <filename>spec/views/matches/index_atom_builder_spec.rb</filename>
    </removed>
    <removed>
      <filename>stories/accounts/signing_up.rb</filename>
    </removed>
    <removed>
      <filename>stories/all.rb</filename>
    </removed>
    <removed>
      <filename>stories/helper.rb</filename>
    </removed>
    <removed>
      <filename>stories/matches/creating_a_match.rb</filename>
    </removed>
    <removed>
      <filename>test/integration/first_login_test.rb</filename>
    </removed>
    <removed>
      <filename>test/integration/public_content_test.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>676b6ff3dea78962c4b9ab1db800228ffea0f7c1</id>
    </parent>
  </parents>
  <author>
    <name>Lars G. Sehested</name>
    <email>lars@larssehested.com</email>
  </author>
  <url>http://github.com/larssg/score-keeper/commit/b27e772e0aa7876e6b03c9a08d88799606b2af26</url>
  <id>b27e772e0aa7876e6b03c9a08d88799606b2af26</id>
  <committed-date>2009-06-27T04:24:09-07:00</committed-date>
  <authored-date>2009-06-27T04:24:09-07:00</authored-date>
  <message>Remove RSpec files - converting to Shoulda</message>
  <tree>4352ad7f072de6bcd97711fabb361ca05e155fd2</tree>
  <committer>
    <name>Lars G. Sehested</name>
    <email>lars@larssehested.com</email>
  </committer>
</commit>
