aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-19 11:34:32 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-19 11:34:32 -0500
commit576cae004342899b0506a7834edc524a02a7d9ef (patch)
tree11f6adf7e11abfe43d094c93e64e44cc833f0d4a /railties/test/generators
parent3fdd1acab61a46ab4823d63ad0bab4879d2bb446 (diff)
downloadrails-576cae004342899b0506a7834edc524a02a7d9ef.tar.gz
rails-576cae004342899b0506a7834edc524a02a7d9ef.tar.bz2
rails-576cae004342899b0506a7834edc524a02a7d9ef.zip
Stub out timestamped_migrations in generator tests
Diffstat (limited to 'railties/test/generators')
-rw-r--r--railties/test/generators/generator_test_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/test/generators/generator_test_helper.rb b/railties/test/generators/generator_test_helper.rb
index 80d5b145be..0901b215e4 100644
--- a/railties/test/generators/generator_test_helper.rb
+++ b/railties/test/generators/generator_test_helper.rb
@@ -5,9 +5,10 @@ require 'fileutils'
module ActiveRecord
class Base
class << self
- attr_accessor :pluralize_table_names
+ attr_accessor :pluralize_table_names, :timestamped_migrations
end
self.pluralize_table_names = true
+ self.timestamped_migrations = true
end
module ConnectionAdapters