aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/active_record_gem.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-12-18 13:21:24 +0530
committerVipul A M <vipulnsward@gmail.com>2013-12-18 14:39:50 +0530
commit7bae2921ec51335ec87fde1980a1b568ce37fc1c (patch)
tree1e9d2893e4f66177415077d9b53fa14ddee04eb0 /guides/bug_report_templates/active_record_gem.rb
parentc141dfc838a5dca9f197814410fa5d44c143129c (diff)
downloadrails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.tar.gz
rails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.tar.bz2
rails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.zip
Change all `MiniTest` to `Minitest` since, `MiniTest` namespace has been renamed to `Minitest`
Ref: https://github.com/seattlerb/minitest/blob/master/History.txt
Diffstat (limited to 'guides/bug_report_templates/active_record_gem.rb')
-rw-r--r--guides/bug_report_templates/active_record_gem.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/bug_report_templates/active_record_gem.rb b/guides/bug_report_templates/active_record_gem.rb
index a8868a1877..37cd700fbf 100644
--- a/guides/bug_report_templates/active_record_gem.rb
+++ b/guides/bug_report_templates/active_record_gem.rb
@@ -25,7 +25,7 @@ class Comment < ActiveRecord::Base
belongs_to :post
end
-class BugTest < MiniTest::Unit::TestCase
+class BugTest < Minitest::Unit::TestCase
def test_association_stuff
post = Post.create!
post.comments << Comment.create!