8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3c9fe commit cb554eeCopy full SHA for cb554ee
github-markup.gemspec
@@ -17,4 +17,5 @@ Gem::Specification.new do |s|
17
s.require_paths = %w[lib]
18
19
s.add_dependency "posix-spawn", "~> 0.3.8"
20
+ s.add_dependency 'minitest', '~> 5.4.3'
21
end
test/markup_test.rb
@@ -3,9 +3,9 @@
3
$LOAD_PATH.unshift File.dirname(__FILE__) + "/../lib"
4
5
require 'github/markup'
6
-require 'test/unit'
+require 'minitest/autorun'
7
8
-class MarkupTest < Test::Unit::TestCase
+class MarkupTest < Minitest::Test
9
Dir['test/markups/README.*'].each do |readme|
10
next if readme =~ /html$/
11
markup = readme.split('/').last.gsub(/^README\./, '')
0 commit comments