8000 Update test suite to rely on the Minitest gem · github/markup@cb554ee · GitHub
[go: up one dir, main page]

Skip to content

Commit cb554ee

Browse files
committed
Update test suite to rely on the Minitest gem
1 parent cf3c9fe commit cb554ee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

github-markup.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ Gem::Specification.new do |s|
1717
s.require_paths = %w[lib]
1818

1919
s.add_dependency "posix-spawn", "~> 0.3.8"
20+
s.add_dependency 'minitest', '~> 5.4.3'
2021
end

test/markup_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
$LOAD_PATH.unshift File.dirname(__FILE__) + "/../lib"
44

55
require 'github/markup'
6-
require 'test/unit'
6+
require 'minitest/autorun'
77

8-
class MarkupTest < Test::Unit::TestCase
8+
class MarkupTest < Minitest::Test
99
Dir['test/markups/README.*'].each do |readme|
1010
next if readme =~ /html$/
1111
markup = readme.split('/').last.gsub(/^README\./, '')

0 commit comments

Comments
 (0)
0