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:
commit
9208338b0f
2 changed files with 2 additions and 2 deletions
|
@ -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!
|
||||
|
|
|
@ -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!
|
||||
|
|
Loading…
Reference in a new issue