rubyjedi-testunitxml 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +19 -0
- data/MIT-LICENSE +21 -0
- data/README +119 -0
- data/lib/test/unit/xml/attributes_mixin.rb +21 -0
- data/lib/test/unit/xml/conditionals.rb +147 -0
- data/lib/test/unit/xml/doctype_mixin.rb +54 -0
- data/lib/test/unit/xml/nodeiterator.rb +67 -0
- data/lib/test/unit/xml/notationdecl_mixin.rb +54 -0
- data/lib/test/unit/xml/xml_assertions.rb +163 -0
- data/lib/test/unit/xml/xmlequalfilter.rb +31 -0
- data/lib/test/unit/xml.rb +21 -0
- data/test/data/test1.xml +23 -0
- data/test/tc_attributes_mixin.rb +37 -0
- data/test/tc_doctype_mixin.rb +71 -0
- data/test/tc_notationdecl_mixin.rb +68 -0
- data/test/tc_testunitxml.rb +315 -0
- data/test/tc_testunitxml2.rb +34 -0
- data/test/ts_testunitxml.rb +12 -0
- metadata +79 -0
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubyjedi-testunitxml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 5
|
9
|
+
version: 0.1.5
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Henrik Martensson, Laurence A. Lee
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-05-24 00:00:00 -10:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Test::Unit::XML extends the Test::Unit framework with an assertion for testing well-formed XML documents
|
22
|
+
email: self@henrikmartensson.org, lalee@pobox.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files: []
|
28
|
+
|
29
|
+
files:
|
30
|
+
- README
|
31
|
+
- CHANGES
|
32
|
+
- MIT-LICENSE
|
33
|
+
- lib/test/unit/xml/nodeiterator.rb
|
34
|
+
- lib/test/unit/xml/conditionals.rb
|
35
|
+
- lib/test/unit/xml/attributes_mixin.rb
|
36
|
+
- lib/test/unit/xml/doctype_mixin.rb
|
37
|
+
- lib/test/unit/xml/xmlequalfilter.rb
|
38
|
+
- lib/test/unit/xml/notationdecl_mixin.rb
|
39
|
+
- lib/test/unit/xml/xml_assertions.rb
|
40
|
+
- lib/test/unit/xml.rb
|
41
|
+
- test/tc_testunitxml2.rb
|
42
|
+
- test/tc_doctype_mixin.rb
|
43
|
+
- test/tc_notationdecl_mixin.rb
|
44
|
+
- test/ts_testunitxml.rb
|
45
|
+
- test/data/test1.xml
|
46
|
+
- test/tc_testunitxml.rb
|
47
|
+
- test/tc_attributes_mixin.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://wiki.github.com/rubyjedi/testunitxml/
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message:
|
53
|
+
rdoc_options: []
|
54
|
+
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
segments:
|
69
|
+
- 0
|
70
|
+
version: "0"
|
71
|
+
requirements: []
|
72
|
+
|
73
|
+
rubyforge_project:
|
74
|
+
rubygems_version: 1.3.6
|
75
|
+
signing_key:
|
76
|
+
specification_version: 3
|
77
|
+
summary: Unit test suite for XML documents
|
78
|
+
test_files:
|
79
|
+
- test/ts_testunitxml.rb
|