Skip to content

Commit

Permalink
Minitest::Unit::TestCase is Minitest::Test [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
arunagw committed Dec 26, 2013
1 parent cef8c8f commit fd1c515
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/action_controller_gem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def index
require 'minitest/autorun'
require 'rack/test'

class BugTest < Minitest::Unit::TestCase
class BugTest < Minitest::Test
include Rack::Test::Methods

def test_returns_success
Expand Down
2 changes: 1 addition & 1 deletion guides/bug_report_templates/active_record_gem.rb
Original file line number Diff line number Diff line change
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

0 comments on commit fd1c515

Please sign in to comment.