1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Still use the directory command and also remove the fixture comments.

This commit is contained in:
José Valim 2010-04-09 08:47:19 +02:00
parent a654ef2ee1
commit cb8fa3573c
2 changed files with 3 additions and 13 deletions

View file

@ -157,17 +157,7 @@ module Rails::Generators
def create_test_files
return if options[:skip_testunit]
empty_directory "test"
inside "test" do
template "test_helper.rb"
directory "fixtures"
directory "functional"
directory "integration"
directory "performance"
directory "unit"
end
directory "test"
end
def create_tmp_files

View file

@ -3,13 +3,13 @@ require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
class ActiveSupport::TestCase
<% unless options[:skip_activerecord] -%>
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
#
# Note: You'll currently still have to declare fixtures explicitly in integration tests
# -- they do not yet inherit this setting
<% unless options[:skip_activerecord] -%>
fixtures :all
<% end -%>
<% end -%>
# Add more helper methods to be used by all tests here...
end