diff options
author | José Valim <jose.valim@gmail.com> | 2009-06-21 10:06:02 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2009-06-23 16:53:47 +0200 |
commit | f03890e151d7a8b9cc413ea9955efc95ff4fbfe6 (patch) | |
tree | 0f363237205041f44923e1baa02688e227d57f17 /railties/test | |
parent | 04eb5b6e3428a2db773303b339bc776767635aee (diff) | |
download | rails-f03890e151d7a8b9cc413ea9955efc95ff4fbfe6.tar.gz rails-f03890e151d7a8b9cc413ea9955efc95ff4fbfe6.tar.bz2 rails-f03890e151d7a8b9cc413ea9955efc95ff4fbfe6.zip |
Use Rails generators files organization.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generator/generator_test_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/generator/generator_test_helper.rb b/railties/test/generator/generator_test_helper.rb index cdfd9bac0d..ebd3547e5e 100644 --- a/railties/test/generator/generator_test_helper.rb +++ b/railties/test/generator/generator_test_helper.rb @@ -4,13 +4,13 @@ require 'fileutils' $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../lib" # For this while, let's load all generators by hand -require 'generator/generators/app' +require 'generator/generators/app/app_generator' class GeneratorTestCase < Test::Unit::TestCase include FileUtils def destination_root - @destinartion_root ||= File.expand_path("#{File.dirname(__FILE__)}/../fixtures/tmp") + @destination_root ||= File.expand_path("#{File.dirname(__FILE__)}/../fixtures/tmp") end def setup |