1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #11966 from jetthoughts/update_bug_report_templates

Use `Minitest::Test` instead of old `MiniTest::Unit::TestCase` for bug reports template
This commit is contained in:
Rafael Mendonça França 2013-08-21 13:02:32 -07:00
commit 9208338b0f
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ class Comment < ActiveRecord::Base
belongs_to :post
end
class BugTest < MiniTest::Unit::TestCase
class BugTest < Minitest::Test
def test_association_stuff
post = Post.create!
post.comments << Comment.create!

View file

@ -36,7 +36,7 @@ class Comment < ActiveRecord::Base
belongs_to :post
end
class BugTest < MiniTest::Unit::TestCase
class BugTest < Minitest::Test
def test_association_stuff
post = Post.create!
post.comments << Comment.create!