提交 d0610506 编写于 作者: R rohit 提交者: José Valim

Add test for migration generator with name not starting with add or remove. [#4835 state:committed]

Signed-off-by: NJosé Valim <jose.valim@gmail.com>
上级 45159478
......@@ -62,4 +62,19 @@ def test_remove_migration_with_attributes
end
end
end
def test_should_create_empty_migrations_if_name_not_start_with_add_or_remove
migration = "create_books"
run_generator [migration, "title:string", "content:text"]
assert_migration "db/migrate/#{migration}.rb" do |content|
assert_class_method :up, content do |up|
assert_match /^\s*$/, up
end
assert_class_method :down, content do |down|
assert_match /^\s*$/, down
end
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册