Be careful not to reference ActiveRecord if it isn't loaded, fixing rake test when you're working without a database. [eedn]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8339 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-12-09 04:37:46 +00:00
parent 2c951efed3
commit 77de690a56

View File

@@ -9,7 +9,12 @@ module YAML #:nodoc:
end
end
class FixtureClassNotFound < ActiveRecord::ActiveRecordError #:nodoc:
if defined? ActiveRecord
class FixtureClassNotFound < ActiveRecord::ActiveRecordError #:nodoc:
end
else
class FixtureClassNotFound < StandardError #:nodoc:
end
end
# Fixtures are a way of organizing data that you want to test against; in short, sample data. They come in 3 flavors: