aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/model_generator_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-06-17 15:10:53 -0300
committerJosé Valim <jose.valim@gmail.com>2011-06-17 15:10:53 -0300
commit08983fefd547142ef8b913af1859b96597753d9f (patch)
tree0b3d648ba38db34d114cbd8488692d85cf1f1d71 /railties/test/generators/model_generator_test.rb
parent9a64c8ec660a6dc20e8df26b0936502bd4c1ffb8 (diff)
downloadrails-08983fefd547142ef8b913af1859b96597753d9f.tar.gz
rails-08983fefd547142ef8b913af1859b96597753d9f.tar.bz2
rails-08983fefd547142ef8b913af1859b96597753d9f.zip
Attributes on scaffold and model generators default to string.
This allows the following: "rails g scaffold Post title body:text author"
Diffstat (limited to 'railties/test/generators/model_generator_test.rb')
-rw-r--r--railties/test/generators/model_generator_test.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/railties/test/generators/model_generator_test.rb b/railties/test/generators/model_generator_test.rb
index 8c5ba9926b..1b0cb425c6 100644
--- a/railties/test/generators/model_generator_test.rb
+++ b/railties/test/generators/model_generator_test.rb
@@ -12,9 +12,15 @@ class ModelGeneratorTest < Rails::Generators::TestCase
end
def test_model_with_missing_attribute_type
- content = capture(:stderr) { run_generator ["post", "title:string", "body"] }
- assert_match(/Missing type for attribute 'body'/, content)
- assert_match(/Example: 'body:string' where string is the type/, content)
+ run_generator ["post", "title", "body:text", "author"]
+
+ assert_migration "db/migrate/create_posts.rb" do |m|
+ assert_method :change, m do |up|
+ assert_match(/t\.string :title/, up)
+ assert_match(/t\.text :body/, up)
+ assert_match(/t\.string :author/, up)
+ end
+ end
end
def test_invokes_default_orm