Skip to content

Commit

Permalink
Merge pull request #232 from vipulnsward/bump-minitest
Browse files Browse the repository at this point in the history
Bump minitest to 5.1.
  • Loading branch information
Rafael Mendonça França committed Feb 5, 2014
2 parents ff6fe85 + 481ff10 commit c6297d7
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
source "https://rubygems.org/"


gem "minitest", "~>4.4", :group => [:development, :test]
gem "minitest", "~>5.1", :group => [:development, :test]
gem "rdoc", "~>4.0", :group => [:development, :test]
gem "hoe", "~>3.5", :group => [:development, :test]

Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_ascending.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestAscending < MiniTest::Unit::TestCase
class TestAscending < Minitest::Test
def test_construct
ascending = Ascending.new 'zomg'
assert_equal 'zomg', ascending.expr
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_bin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestBin < MiniTest::Unit::TestCase
class TestBin < Minitest::Test
def test_new
assert Arel::Nodes::Bin.new('zomg')
end
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_descending.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestDescending < MiniTest::Unit::TestCase
class TestDescending < Minitest::Test
def test_construct
descending = Descending.new 'zomg'
assert_equal 'zomg', descending.expr
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_infix_operation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestInfixOperation < MiniTest::Unit::TestCase
class TestInfixOperation < Minitest::Test
def test_construct
operation = InfixOperation.new :+, 1, 2
assert_equal :+, operation.operator
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_named_function.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestNamedFunction < MiniTest::Unit::TestCase
class TestNamedFunction < Minitest::Test
def test_construct
function = NamedFunction.new 'omg', 'zomg'
assert_equal 'omg', function.name
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_node.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'helper'

module Arel
class TestNode < MiniTest::Unit::TestCase
class TestNode < Minitest::Test
def test_includes_factory_methods
assert Node.new.respond_to?(:create_join)
end
Expand Down
2 changes: 1 addition & 1 deletion test/nodes/test_select_core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Nodes
class TestSelectCore < MiniTest::Unit::TestCase
class TestSelectCore < Minitest::Test
def test_clone
core = Arel::Nodes::SelectCore.new
core.froms = %w[a b c]
Expand Down
2 changes: 1 addition & 1 deletion test/test_factory_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module FactoryMethods
class TestFactoryMethods < MiniTest::Unit::TestCase
class TestFactoryMethods < Minitest::Test
class Factory
include Arel::FactoryMethods
end
Expand Down
2 changes: 1 addition & 1 deletion test/visitors/test_bind_visitor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module Arel
module Visitors
class TestBindVisitor < MiniTest::Unit::TestCase
class TestBindVisitor < Minitest::Test

##
# Tests visit_Arel_Nodes_Assignment correctly
Expand Down
2 changes: 1 addition & 1 deletion test/visitors/test_depth_first.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Visitors
class TestDepthFirst < MiniTest::Unit::TestCase
class TestDepthFirst < Minitest::Test
Collector = Struct.new(:calls) do
def call object
calls << object
Expand Down
2 changes: 1 addition & 1 deletion test/visitors/test_dot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Arel
module Visitors
class TestDot < MiniTest::Unit::TestCase
class TestDot < Minitest::Test
def setup
@visitor = Visitors::Dot.new
end
Expand Down

0 comments on commit c6297d7

Please sign in to comment.