summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile.lock30
-rw-r--r--test/ext/capture_output.rb2
-rw-r--r--test/test_helper.rb2
3 files changed, 18 insertions, 16 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
index 614f8ed..31f453b 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -14,7 +14,8 @@ GEM
remote: https://rubygems.org/
specs:
chronic (0.10.2)
- coderay (1.0.9)
+ coderay (1.1.0)
+ docile (1.1.2)
escape_utils (1.0.1)
fakeweb (1.3.0)
faraday (0.9.0)
@@ -23,24 +24,24 @@ GEM
highline (1.6.20)
hpricot (0.8.6)
hpricot (0.8.6-java)
- metaclass (0.0.1)
+ metaclass (0.0.2)
method_source (0.8.2)
- minitest (4.7.5)
- mocha (0.14.0)
+ minitest (5.2.2)
+ mocha (1.0.0)
metaclass (~> 0.0.1)
- multi_json (1.8.2)
+ multi_json (1.8.4)
multipart-post (2.0.0)
mustache (0.99.5)
- pry (0.9.12.2)
- coderay (~> 1.0.5)
+ pry (0.9.12.4)
+ coderay (~> 1.0)
method_source (~> 0.8)
slop (~> 3.4)
- pry (0.9.12.2-java)
- coderay (~> 1.0.5)
+ pry (0.9.12.4-java)
+ coderay (~> 1.0)
method_source (~> 0.8)
slop (~> 3.4)
spoon (~> 0.0)
- rake (10.1.0)
+ rake (10.1.1)
rdiscount (2.1.7)
ronn (0.7.3)
hpricot (>= 0.8.2)
@@ -52,10 +53,11 @@ GEM
rubysl-coverage (2.0.3)
rubysl-rexml (2.0.2)
rubysl-singleton (2.0.0)
- simplecov (0.7.1)
- multi_json (~> 1.0)
- simplecov-html (~> 0.7.1)
- simplecov-html (0.7.1)
+ simplecov (0.8.2)
+ docile (~> 1.1.0)
+ multi_json
+ simplecov-html (~> 0.8.0)
+ simplecov-html (0.8.0)
slop (3.4.7)
spoon (0.0.4)
ffi
diff --git a/test/ext/capture_output.rb b/test/ext/capture_output.rb
index 00a39b0..499e901 100644
--- a/test/ext/capture_output.rb
+++ b/test/ext/capture_output.rb
@@ -18,7 +18,7 @@ module CaptureOutput
@stdout.string
end
end
-class MiniTest::Unit::TestCase
+class MiniTest::Test
include CaptureOutput
end
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 610bd94..4297ae7 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -27,7 +27,7 @@ require 'fakeweb'
# require test extensions/helpers
Dir[File.dirname(__FILE__) + '/ext/*.rb'].each { |ext| require ext }
-class HCl::TestCase < MiniTest::Unit::TestCase
+class HCl::TestCase < MiniTest::Test
attr_reader :http
def setup
FakeWeb.allow_net_connect = false