aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-04 15:43:02 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-04 15:43:02 -0700
commit507812fdf32586a59071efabdfc471402bd589f3 (patch)
tree530e01dc8f7c408d1fd4131a8b2caaa7b884578c /guides
parentf28345858ae523845c888fec29865ef2a8f0a68a (diff)
parent261520d91890a6844fc769ecf8bd221e35c8974c (diff)
downloadrails-507812fdf32586a59071efabdfc471402bd589f3.tar.gz
rails-507812fdf32586a59071efabdfc471402bd589f3.tar.bz2
rails-507812fdf32586a59071efabdfc471402bd589f3.zip
Merge pull request #10094 from neerajdotname/fix2
Collection of small fixes. Check individual commits for background.
Diffstat (limited to 'guides')
-rw-r--r--guides/bug_report_templates/active_record_gem.rb2
-rw-r--r--guides/bug_report_templates/active_record_master.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/active_record_gem.rb b/guides/bug_report_templates/active_record_gem.rb
index 19b7309dd7..2c63342572 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 HasManyBugTest < MiniTest::Unit::TestCase
+class BugTest < MiniTest::Unit::TestCase
def test_association_stuff
post = Post.create!
post.comments << Comment.create!
diff --git a/guides/bug_report_templates/active_record_master.rb b/guides/bug_report_templates/active_record_master.rb
index 99107b83cf..68069cdd8d 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 HasManyBugTest < MiniTest::Unit::TestCase
+class BugTest < MiniTest::Unit::TestCase
def test_association_stuff
post = Post.create!
post.comments << Comment.create!