mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
32 lines
No EOL
718 B
Ruby
32 lines
No EOL
718 B
Ruby
# TODO: Fix this RAILS_ENV stuff
|
|
RAILS_ENV = 'test' unless defined?(RAILS_ENV)
|
|
require 'abstract_unit'
|
|
|
|
module Rails
|
|
def self.root
|
|
@root ||= File.expand_path(File.join(File.dirname(__FILE__), '..', 'fixtures'))
|
|
end
|
|
end
|
|
Rails.application.config.root = Rails.root
|
|
|
|
require 'rails/generators'
|
|
require 'rails/generators/test_case'
|
|
|
|
require 'rubygems'
|
|
require 'active_record'
|
|
require 'action_dispatch'
|
|
|
|
class GeneratorsTestCase < Rails::Generators::TestCase
|
|
destination File.join(Rails.root, "tmp")
|
|
setup :prepare_destination
|
|
|
|
def self.inherited(base)
|
|
base.tests Rails::Generators.const_get(base.name.sub(/Test$/, ''))
|
|
rescue
|
|
# Do nothing.
|
|
end
|
|
|
|
def test_truth
|
|
# Don't cry test/unit
|
|
end
|
|
end |