Skip to content

Instantly share code, notes, and snippets.

@AquaGeek
Created May 14, 2011 02:36
Show Gist options
  • Select an option

  • Save AquaGeek/971853 to your computer and use it in GitHub Desktop.

Select an option

Save AquaGeek/971853 to your computer and use it in GitHub Desktop.
Rails Lighthouse ticket #6746
From 0c006d3a02a07cb0531727d247c6a85e4cff821b Mon Sep 17 00:00:00 2001
From: Joe Van Dyk <[email protected]>
Date: Mon, 25 Apr 2011 21:15:35 -0700
Subject: [PATCH] activerecord/test/cases/finder_test.rb missing a require statement
Test wouldn't run by itself.
---
activerecord/test/cases/finder_test.rb | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb
index c779a69..751898a 100644
--- a/activerecord/test/cases/finder_test.rb
+++ b/activerecord/test/cases/finder_test.rb
@@ -8,6 +8,7 @@ require 'models/topic'
require 'models/reply'
require 'models/entrant'
require 'models/developer'
+require 'models/project'
require 'models/customer'
require 'models/job'
require 'models/categorization'
--
1.7.0.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment