Skip to content

Commit

Permalink
Merge pull request #11966 from jetthoughts/update_bug_report_templates
Browse files Browse the repository at this point in the history
Use `Minitest::Test` instead of old `MiniTest::Unit::TestCase` for bug reports template
  • Loading branch information
rafaelfranca committed Aug 21, 2013
2 parents 7a31388 + 0643daa commit 9208338
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guides/bug_report_templates/active_record_gem.rb
Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion guides/bug_report_templates/active_record_master.rb
Expand Up @@ -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!
Expand Down

0 comments on commit 9208338

Please sign in to comment.