aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/active_record_master.rb
diff options
context:
space:
mode:
authorPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-08-21 22:49:12 +0300
committerPaul Nikitochkin <paul.nikitochkin@gmail.com>2013-08-21 22:52:12 +0300
commit0643daaf4c5a0111842d3421a2b4fecac51916c5 (patch)
tree6720164f7c25d9c8c98e635c2a67c376276725a8 /guides/bug_report_templates/active_record_master.rb
parent7a3138868283ad24f3a7267d077bec9b9af24b56 (diff)
downloadrails-0643daaf4c5a0111842d3421a2b4fecac51916c5.tar.gz
rails-0643daaf4c5a0111842d3421a2b4fecac51916c5.tar.bz2
rails-0643daaf4c5a0111842d3421a2b4fecac51916c5.zip
Updated bug report templates
* use `Minitest::Test` instead of deprectaed `MiniTest::Unit::TestCase` [ci skip]
Diffstat (limited to 'guides/bug_report_templates/active_record_master.rb')
-rw-r--r--guides/bug_report_templates/active_record_master.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/bug_report_templates/active_record_master.rb b/guides/bug_report_templates/active_record_master.rb
index 68069cdd8d..29dedd88d0 100644
--- a/guides/bug_report_templates/active_record_master.rb
+++ b/guides/bug_report_templates/active_record_master.rb
@@ -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!