Skip to content

Commit

Permalink
Merge pull request #35 from tenderlove/minitest
Browse files Browse the repository at this point in the history
convert to  minitest
  • Loading branch information
westonplatter committed Feb 3, 2014
2 parents 54ea1cd + e66a979 commit 2ace3be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions phashion.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ Gem::Specification.new do |s|

s.add_development_dependency "rake-compiler", ">= 0.7.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "minitest", "~> 5.2.2"
end

5 changes: 1 addition & 4 deletions test/helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
require 'rubygems'
require 'test/unit'
require 'phashion'

class Test::Unit::TestCase
end
require 'minitest/autorun'
2 changes: 1 addition & 1 deletion test/test_phashion.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'helper'
require 'sqlite3'

class TestPhashion < Test::Unit::TestCase
class TestPhashion < Minitest::Test

def split(hash)
r = hash & 0xFFFFFFFF
Expand Down

0 comments on commit 2ace3be

Please sign in to comment.