aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2012-04-09 09:48:30 -0400
committerPrem Sichanugrist <s@sikachu.com>2012-04-09 09:48:30 -0400
commitcf03daa5f509e48cf03897163471f3064cf2f5eb (patch)
treecf03ad9bb46de3eff730fd79eef57b33280dbc64 /railties/lib/rails/generators
parent8f25db9067b57b84b7c8654af966f97294abb655 (diff)
downloadrails-cf03daa5f509e48cf03897163471f3064cf2f5eb.tar.gz
rails-cf03daa5f509e48cf03897163471f3064cf2f5eb.tar.bz2
rails-cf03daa5f509e48cf03897163471f3064cf2f5eb.zip
Fix code example in generator test case
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r--railties/lib/rails/generators/test_case.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/test_case.rb b/railties/lib/rails/generators/test_case.rb
index d81c4c3e1d..2cb34fab7a 100644
--- a/railties/lib/rails/generators/test_case.rb
+++ b/railties/lib/rails/generators/test_case.rb
@@ -135,7 +135,7 @@ module Rails
# Asserts a given migration does not exist. You need to supply an absolute path or a
# path relative to the configured destination:
#
- # assert_no_file "config/random.rb"
+ # assert_no_migration "db/migrate/create_products.rb"
#
def assert_no_migration(relative)
file_name = migration_file_name(relative)
@@ -182,7 +182,7 @@ module Rails
# Asserts the given attribute type gets a proper default value:
#
- # assert_field_type :string, "MyString"
+ # assert_field_default_value :string, "MyString"
#
def assert_field_default_value(attribute_type, value)
assert_equal(value, create_generated_attribute(attribute_type).default)