Updated bug report templates

* use `Minitest::Test` instead of deprectaed `MiniTest::Unit::TestCase`

 [ci skip]
This commit is contained in:
Paul Nikitochkin 2013-08-21 22:49:12 +03:00
parent 7a31388682
commit 0643daaf4c
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!