diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2008-05-03 11:29:47 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2008-05-03 11:29:47 -0500 |
commit | 96980bd561d79824b6cb6efbcbecdcbf8785d452 (patch) | |
tree | 66c4d506c883dbebf628c7bed020b704980d6729 /activerecord/RUNNING_UNIT_TESTS | |
parent | 64092de25727c1943807bf5345107d90428135a0 (diff) | |
download | rails-96980bd561d79824b6cb6efbcbecdcbf8785d452.tar.gz rails-96980bd561d79824b6cb6efbcbecdcbf8785d452.tar.bz2 rails-96980bd561d79824b6cb6efbcbecdcbf8785d452.zip |
Added change_table for migrations (Jeff Dean) [#71 state:resolved]
Diffstat (limited to 'activerecord/RUNNING_UNIT_TESTS')
-rw-r--r-- | activerecord/RUNNING_UNIT_TESTS | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/RUNNING_UNIT_TESTS b/activerecord/RUNNING_UNIT_TESTS index ea7f3c02d2..39fc86759f 100644 --- a/activerecord/RUNNING_UNIT_TESTS +++ b/activerecord/RUNNING_UNIT_TESTS @@ -27,7 +27,10 @@ you can do so with: rake test_mysql TEST=test/cases/base_test.rb -That'll run the base suite using the MySQL-Ruby adapter. +That'll run the base suite using the MySQL-Ruby adapter. Some tests rely on the schema +being initialized - you can initialize the schema with: + + rake test_mysql TEST=test/cases/aaa_create_tables_test.rb |