test_xml 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.md +6 -2
- data/Gemfile +1 -1
- data/lib/test_xml/mini_test.rb +5 -5
- data/lib/test_xml/version.rb +1 -1
- metadata +2 -2
data/CHANGES.md
CHANGED
data/Gemfile
CHANGED
data/lib/test_xml/mini_test.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
require "test_xml"
|
2
2
|
require "test_xml/test_unit"
|
3
3
|
|
4
|
-
MiniTest::Unit::TestCase.class_eval do
|
5
|
-
include TestXml::TestUnit::Assertions
|
6
|
-
end
|
7
|
-
|
8
4
|
# TODO: should we remove test_xml/spec?
|
9
5
|
MiniTest::Expectations.class_eval do
|
10
6
|
TestXml::ASSERTIONS.each do |cfg|
|
11
7
|
infect_an_assertion(cfg.assert_name, cfg.expectation)
|
12
8
|
end
|
13
|
-
end
|
9
|
+
end
|
10
|
+
|
11
|
+
class MiniTest::Test
|
12
|
+
include TestXml::TestUnit::Assertions
|
13
|
+
end
|
data/lib/test_xml/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: test_xml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-05-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: nokogiri
|