rdf-rdfxml 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (386) hide show
  1. data/.gitignore +2 -0
  2. data/.yardopts +2 -1
  3. data/CONTRIBUTORS +1 -0
  4. data/History.txt +7 -0
  5. data/README.rdoc +19 -2
  6. data/Rakefile +14 -0
  7. data/VERSION +1 -1
  8. data/example.rb +0 -1
  9. data/lib/rdf/rdfxml.rb +14 -6
  10. data/lib/rdf/rdfxml/format.rb +6 -5
  11. data/lib/rdf/rdfxml/patches/array_hacks.rb +53 -0
  12. data/lib/rdf/rdfxml/patches/nokogiri_hacks.rb +8 -0
  13. data/lib/rdf/rdfxml/patches/rdf_escape.rb +131 -0
  14. data/lib/rdf/rdfxml/reader.rb +90 -57
  15. data/lib/rdf/rdfxml/version.rb +1 -1
  16. data/lib/rdf/rdfxml/vocab.rb +3 -0
  17. data/lib/rdf/rdfxml/writer.rb +399 -0
  18. data/rdf-rdfxml.gemspec +448 -0
  19. data/script/console +10 -0
  20. data/spec/format_spec.rb +22 -0
  21. data/spec/matchers.rb +121 -0
  22. data/spec/rdf_helper.rb +176 -0
  23. data/spec/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt +24 -0
  24. data/spec/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf +46 -0
  25. data/spec/rdf_tests/tm_001.nt +1 -0
  26. data/spec/rdf_tests/tm_001.rdf +7 -0
  27. data/spec/rdf_tests/xml-literal-mixed.nt +6 -0
  28. data/spec/rdf_tests/xml-literal-mixed.rdf +15 -0
  29. data/spec/rdfcore/Manifest.rdf +5395 -0
  30. data/spec/rdfcore/Manifest.yml +1970 -0
  31. data/spec/rdfcore/amp-in-url/test001.nt +16 -0
  32. data/spec/rdfcore/amp-in-url/test001.rdf +40 -0
  33. data/spec/rdfcore/datatypes-intensional/test001.nt +18 -0
  34. data/spec/rdfcore/datatypes-intensional/test002.nt +18 -0
  35. data/spec/rdfcore/datatypes/test001.nt +15 -0
  36. data/spec/rdfcore/datatypes/test001.rdf +29 -0
  37. data/spec/rdfcore/datatypes/test002.nt +14 -0
  38. data/spec/rdfcore/datatypes/test002.rdf +27 -0
  39. data/spec/rdfcore/datatypes/test002b.nt +17 -0
  40. data/spec/rdfcore/datatypes/test003a.nt +16 -0
  41. data/spec/rdfcore/datatypes/test003b.nt +16 -0
  42. data/spec/rdfcore/datatypes/test005a.nt +16 -0
  43. data/spec/rdfcore/datatypes/test005b.nt +16 -0
  44. data/spec/rdfcore/datatypes/test006.nt +17 -0
  45. data/spec/rdfcore/datatypes/test008a.nt +15 -0
  46. data/spec/rdfcore/datatypes/test008b.nt +15 -0
  47. data/spec/rdfcore/datatypes/test009a.nt +15 -0
  48. data/spec/rdfcore/datatypes/test009b.nt +15 -0
  49. data/spec/rdfcore/datatypes/test010.nt +17 -0
  50. data/spec/rdfcore/datatypes/test011a.nt +17 -0
  51. data/spec/rdfcore/datatypes/test011b.nt +17 -0
  52. data/spec/rdfcore/horst-01/test001.rdf +38 -0
  53. data/spec/rdfcore/horst-01/test002.rdf +39 -0
  54. data/spec/rdfcore/horst-01/test003.rdf +40 -0
  55. data/spec/rdfcore/horst-01/test004.rdf +42 -0
  56. data/spec/rdfcore/pfps-10/test001a.nt +14 -0
  57. data/spec/rdfcore/pfps-10/test001b.nt +15 -0
  58. data/spec/rdfcore/rdf-charmod-literals/test001.nt +15 -0
  59. data/spec/rdfcore/rdf-charmod-literals/test001.rdf +34 -0
  60. data/spec/rdfcore/rdf-charmod-uris/test001.nt +14 -0
  61. data/spec/rdfcore/rdf-charmod-uris/test001.rdf +34 -0
  62. data/spec/rdfcore/rdf-charmod-uris/test002.nt +15 -0
  63. data/spec/rdfcore/rdf-charmod-uris/test002.rdf +33 -0
  64. data/spec/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf +27 -0
  65. data/spec/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf +34 -0
  66. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.nt +17 -0
  67. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf +27 -0
  68. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.nt +19 -0
  69. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf +37 -0
  70. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.nt +18 -0
  71. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf +29 -0
  72. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.nt +29 -0
  73. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf +33 -0
  74. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.nt +40 -0
  75. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf +28 -0
  76. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.nt +20 -0
  77. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf +32 -0
  78. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.nt +15 -0
  79. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf +28 -0
  80. data/spec/rdfcore/rdf-element-not-mandatory/test001.nt +10 -0
  81. data/spec/rdfcore/rdf-element-not-mandatory/test001.rdf +14 -0
  82. data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.nt +14 -0
  83. data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.rdf +35 -0
  84. data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.nt +14 -0
  85. data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.rdf +35 -0
  86. data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.nt +14 -0
  87. data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.rdf +34 -0
  88. data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.nt +15 -0
  89. data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.rdf +40 -0
  90. data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.nt +14 -0
  91. data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.rdf +32 -0
  92. data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.nt +14 -0
  93. data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.rdf +32 -0
  94. data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.nt +14 -0
  95. data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.rdf +38 -0
  96. data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.nt +15 -0
  97. data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.rdf +40 -0
  98. data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.nt +15 -0
  99. data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.rdf +40 -0
  100. data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.nt +15 -0
  101. data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.rdf +40 -0
  102. data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.nt +15 -0
  103. data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.rdf +42 -0
  104. data/spec/rdfcore/rdfms-abouteach/error001.rdf +35 -0
  105. data/spec/rdfcore/rdfms-abouteach/error002.rdf +35 -0
  106. data/spec/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf +25 -0
  107. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.nt +14 -0
  108. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf +22 -0
  109. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.nt +14 -0
  110. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf +22 -0
  111. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.nt +14 -0
  112. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf +22 -0
  113. data/spec/rdfcore/rdfms-duplicate-member-props/test001.nt +17 -0
  114. data/spec/rdfcore/rdfms-duplicate-member-props/test001.rdf +30 -0
  115. data/spec/rdfcore/rdfms-empty-property-elements/error001.rdf +33 -0
  116. data/spec/rdfcore/rdfms-empty-property-elements/error002.rdf +33 -0
  117. data/spec/rdfcore/rdfms-empty-property-elements/error003.rdf +39 -0
  118. data/spec/rdfcore/rdfms-empty-property-elements/test001.nt +14 -0
  119. data/spec/rdfcore/rdfms-empty-property-elements/test001.rdf +33 -0
  120. data/spec/rdfcore/rdfms-empty-property-elements/test002.nt +14 -0
  121. data/spec/rdfcore/rdfms-empty-property-elements/test002.rdf +31 -0
  122. data/spec/rdfcore/rdfms-empty-property-elements/test003.nt +14 -0
  123. data/spec/rdfcore/rdfms-empty-property-elements/test003.rdf +32 -0
  124. data/spec/rdfcore/rdfms-empty-property-elements/test004.nt +14 -0
  125. data/spec/rdfcore/rdfms-empty-property-elements/test004.rdf +32 -0
  126. data/spec/rdfcore/rdfms-empty-property-elements/test005.nt +18 -0
  127. data/spec/rdfcore/rdfms-empty-property-elements/test005.rdf +32 -0
  128. data/spec/rdfcore/rdfms-empty-property-elements/test006.nt +18 -0
  129. data/spec/rdfcore/rdfms-empty-property-elements/test006.rdf +32 -0
  130. data/spec/rdfcore/rdfms-empty-property-elements/test007.nt +14 -0
  131. data/spec/rdfcore/rdfms-empty-property-elements/test007.rdf +32 -0
  132. data/spec/rdfcore/rdfms-empty-property-elements/test008.nt +14 -0
  133. data/spec/rdfcore/rdfms-empty-property-elements/test008.rdf +31 -0
  134. data/spec/rdfcore/rdfms-empty-property-elements/test009.nt +14 -0
  135. data/spec/rdfcore/rdfms-empty-property-elements/test009.rdf +32 -0
  136. data/spec/rdfcore/rdfms-empty-property-elements/test010.nt +14 -0
  137. data/spec/rdfcore/rdfms-empty-property-elements/test010.rdf +31 -0
  138. data/spec/rdfcore/rdfms-empty-property-elements/test011.nt +18 -0
  139. data/spec/rdfcore/rdfms-empty-property-elements/test011.rdf +30 -0
  140. data/spec/rdfcore/rdfms-empty-property-elements/test012.nt +18 -0
  141. data/spec/rdfcore/rdfms-empty-property-elements/test012.rdf +30 -0
  142. data/spec/rdfcore/rdfms-empty-property-elements/test013.nt +15 -0
  143. data/spec/rdfcore/rdfms-empty-property-elements/test013.rdf +35 -0
  144. data/spec/rdfcore/rdfms-empty-property-elements/test014.nt +15 -0
  145. data/spec/rdfcore/rdfms-empty-property-elements/test014.rdf +34 -0
  146. data/spec/rdfcore/rdfms-empty-property-elements/test015.nt +15 -0
  147. data/spec/rdfcore/rdfms-empty-property-elements/test015.rdf +38 -0
  148. data/spec/rdfcore/rdfms-empty-property-elements/test016.nt +14 -0
  149. data/spec/rdfcore/rdfms-empty-property-elements/test016.rdf +31 -0
  150. data/spec/rdfcore/rdfms-empty-property-elements/test017.nt +14 -0
  151. data/spec/rdfcore/rdfms-empty-property-elements/test017.rdf +38 -0
  152. data/spec/rdfcore/rdfms-identity-anon-resources/test001.nt +14 -0
  153. data/spec/rdfcore/rdfms-identity-anon-resources/test001.rdf +33 -0
  154. data/spec/rdfcore/rdfms-identity-anon-resources/test002.nt +15 -0
  155. data/spec/rdfcore/rdfms-identity-anon-resources/test002.rdf +33 -0
  156. data/spec/rdfcore/rdfms-identity-anon-resources/test003.nt +14 -0
  157. data/spec/rdfcore/rdfms-identity-anon-resources/test003.rdf +31 -0
  158. data/spec/rdfcore/rdfms-identity-anon-resources/test004.nt +15 -0
  159. data/spec/rdfcore/rdfms-identity-anon-resources/test004.rdf +33 -0
  160. data/spec/rdfcore/rdfms-identity-anon-resources/test005.nt +14 -0
  161. data/spec/rdfcore/rdfms-identity-anon-resources/test005.rdf +31 -0
  162. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.nt +19 -0
  163. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf +29 -0
  164. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.nt +15 -0
  165. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf +29 -0
  166. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.nt +18 -0
  167. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf +29 -0
  168. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.nt +19 -0
  169. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf +29 -0
  170. data/spec/rdfcore/rdfms-para196/test001.nt +17 -0
  171. data/spec/rdfcore/rdfms-para196/test001.rdf +35 -0
  172. data/spec/rdfcore/rdfms-rdf-id/error001.rdf +26 -0
  173. data/spec/rdfcore/rdfms-rdf-id/error002.rdf +26 -0
  174. data/spec/rdfcore/rdfms-rdf-id/error003.rdf +29 -0
  175. data/spec/rdfcore/rdfms-rdf-id/error004.rdf +27 -0
  176. data/spec/rdfcore/rdfms-rdf-id/error005.rdf +31 -0
  177. data/spec/rdfcore/rdfms-rdf-id/error006.rdf +26 -0
  178. data/spec/rdfcore/rdfms-rdf-id/error007.rdf +29 -0
  179. data/spec/rdfcore/rdfms-rdf-names-use/error-001.rdf +23 -0
  180. data/spec/rdfcore/rdfms-rdf-names-use/error-002.rdf +23 -0
  181. data/spec/rdfcore/rdfms-rdf-names-use/error-003.rdf +23 -0
  182. data/spec/rdfcore/rdfms-rdf-names-use/error-004.rdf +23 -0
  183. data/spec/rdfcore/rdfms-rdf-names-use/error-005.rdf +23 -0
  184. data/spec/rdfcore/rdfms-rdf-names-use/error-006.rdf +23 -0
  185. data/spec/rdfcore/rdfms-rdf-names-use/error-007.rdf +23 -0
  186. data/spec/rdfcore/rdfms-rdf-names-use/error-008.rdf +23 -0
  187. data/spec/rdfcore/rdfms-rdf-names-use/error-009.rdf +23 -0
  188. data/spec/rdfcore/rdfms-rdf-names-use/error-010.rdf +23 -0
  189. data/spec/rdfcore/rdfms-rdf-names-use/error-011.rdf +25 -0
  190. data/spec/rdfcore/rdfms-rdf-names-use/error-012.rdf +25 -0
  191. data/spec/rdfcore/rdfms-rdf-names-use/error-013.rdf +25 -0
  192. data/spec/rdfcore/rdfms-rdf-names-use/error-014.rdf +25 -0
  193. data/spec/rdfcore/rdfms-rdf-names-use/error-015.rdf +25 -0
  194. data/spec/rdfcore/rdfms-rdf-names-use/error-016.rdf +25 -0
  195. data/spec/rdfcore/rdfms-rdf-names-use/error-017.rdf +25 -0
  196. data/spec/rdfcore/rdfms-rdf-names-use/error-018.rdf +25 -0
  197. data/spec/rdfcore/rdfms-rdf-names-use/error-019.rdf +25 -0
  198. data/spec/rdfcore/rdfms-rdf-names-use/error-020.rdf +25 -0
  199. data/spec/rdfcore/rdfms-rdf-names-use/test-001.nt +1 -0
  200. data/spec/rdfcore/rdfms-rdf-names-use/test-001.rdf +23 -0
  201. data/spec/rdfcore/rdfms-rdf-names-use/test-002.nt +1 -0
  202. data/spec/rdfcore/rdfms-rdf-names-use/test-002.rdf +23 -0
  203. data/spec/rdfcore/rdfms-rdf-names-use/test-003.nt +1 -0
  204. data/spec/rdfcore/rdfms-rdf-names-use/test-003.rdf +23 -0
  205. data/spec/rdfcore/rdfms-rdf-names-use/test-004.nt +1 -0
  206. data/spec/rdfcore/rdfms-rdf-names-use/test-004.rdf +23 -0
  207. data/spec/rdfcore/rdfms-rdf-names-use/test-005.nt +1 -0
  208. data/spec/rdfcore/rdfms-rdf-names-use/test-005.rdf +23 -0
  209. data/spec/rdfcore/rdfms-rdf-names-use/test-006.nt +1 -0
  210. data/spec/rdfcore/rdfms-rdf-names-use/test-006.rdf +23 -0
  211. data/spec/rdfcore/rdfms-rdf-names-use/test-007.nt +1 -0
  212. data/spec/rdfcore/rdfms-rdf-names-use/test-007.rdf +23 -0
  213. data/spec/rdfcore/rdfms-rdf-names-use/test-008.nt +1 -0
  214. data/spec/rdfcore/rdfms-rdf-names-use/test-008.rdf +23 -0
  215. data/spec/rdfcore/rdfms-rdf-names-use/test-009.nt +1 -0
  216. data/spec/rdfcore/rdfms-rdf-names-use/test-009.rdf +23 -0
  217. data/spec/rdfcore/rdfms-rdf-names-use/test-010.nt +1 -0
  218. data/spec/rdfcore/rdfms-rdf-names-use/test-010.rdf +23 -0
  219. data/spec/rdfcore/rdfms-rdf-names-use/test-011.nt +1 -0
  220. data/spec/rdfcore/rdfms-rdf-names-use/test-011.rdf +23 -0
  221. data/spec/rdfcore/rdfms-rdf-names-use/test-012.nt +1 -0
  222. data/spec/rdfcore/rdfms-rdf-names-use/test-012.rdf +23 -0
  223. data/spec/rdfcore/rdfms-rdf-names-use/test-013.nt +1 -0
  224. data/spec/rdfcore/rdfms-rdf-names-use/test-013.rdf +23 -0
  225. data/spec/rdfcore/rdfms-rdf-names-use/test-014.nt +1 -0
  226. data/spec/rdfcore/rdfms-rdf-names-use/test-014.rdf +23 -0
  227. data/spec/rdfcore/rdfms-rdf-names-use/test-015.nt +1 -0
  228. data/spec/rdfcore/rdfms-rdf-names-use/test-015.rdf +23 -0
  229. data/spec/rdfcore/rdfms-rdf-names-use/test-016.nt +1 -0
  230. data/spec/rdfcore/rdfms-rdf-names-use/test-016.rdf +23 -0
  231. data/spec/rdfcore/rdfms-rdf-names-use/test-017.nt +1 -0
  232. data/spec/rdfcore/rdfms-rdf-names-use/test-017.rdf +25 -0
  233. data/spec/rdfcore/rdfms-rdf-names-use/test-018.nt +1 -0
  234. data/spec/rdfcore/rdfms-rdf-names-use/test-018.rdf +25 -0
  235. data/spec/rdfcore/rdfms-rdf-names-use/test-019.nt +1 -0
  236. data/spec/rdfcore/rdfms-rdf-names-use/test-019.rdf +25 -0
  237. data/spec/rdfcore/rdfms-rdf-names-use/test-020.nt +1 -0
  238. data/spec/rdfcore/rdfms-rdf-names-use/test-020.rdf +25 -0
  239. data/spec/rdfcore/rdfms-rdf-names-use/test-021.nt +1 -0
  240. data/spec/rdfcore/rdfms-rdf-names-use/test-021.rdf +25 -0
  241. data/spec/rdfcore/rdfms-rdf-names-use/test-022.nt +1 -0
  242. data/spec/rdfcore/rdfms-rdf-names-use/test-022.rdf +25 -0
  243. data/spec/rdfcore/rdfms-rdf-names-use/test-023.nt +1 -0
  244. data/spec/rdfcore/rdfms-rdf-names-use/test-023.rdf +25 -0
  245. data/spec/rdfcore/rdfms-rdf-names-use/test-024.nt +1 -0
  246. data/spec/rdfcore/rdfms-rdf-names-use/test-024.rdf +25 -0
  247. data/spec/rdfcore/rdfms-rdf-names-use/test-025.nt +1 -0
  248. data/spec/rdfcore/rdfms-rdf-names-use/test-025.rdf +25 -0
  249. data/spec/rdfcore/rdfms-rdf-names-use/test-026.nt +1 -0
  250. data/spec/rdfcore/rdfms-rdf-names-use/test-026.rdf +25 -0
  251. data/spec/rdfcore/rdfms-rdf-names-use/test-027.nt +1 -0
  252. data/spec/rdfcore/rdfms-rdf-names-use/test-027.rdf +25 -0
  253. data/spec/rdfcore/rdfms-rdf-names-use/test-028.nt +1 -0
  254. data/spec/rdfcore/rdfms-rdf-names-use/test-028.rdf +25 -0
  255. data/spec/rdfcore/rdfms-rdf-names-use/test-029.nt +1 -0
  256. data/spec/rdfcore/rdfms-rdf-names-use/test-029.rdf +25 -0
  257. data/spec/rdfcore/rdfms-rdf-names-use/test-030.nt +1 -0
  258. data/spec/rdfcore/rdfms-rdf-names-use/test-030.rdf +25 -0
  259. data/spec/rdfcore/rdfms-rdf-names-use/test-031.nt +1 -0
  260. data/spec/rdfcore/rdfms-rdf-names-use/test-031.rdf +25 -0
  261. data/spec/rdfcore/rdfms-rdf-names-use/test-032.nt +1 -0
  262. data/spec/rdfcore/rdfms-rdf-names-use/test-032.rdf +24 -0
  263. data/spec/rdfcore/rdfms-rdf-names-use/test-033.nt +1 -0
  264. data/spec/rdfcore/rdfms-rdf-names-use/test-033.rdf +24 -0
  265. data/spec/rdfcore/rdfms-rdf-names-use/test-034.nt +1 -0
  266. data/spec/rdfcore/rdfms-rdf-names-use/test-034.rdf +24 -0
  267. data/spec/rdfcore/rdfms-rdf-names-use/test-035.nt +1 -0
  268. data/spec/rdfcore/rdfms-rdf-names-use/test-035.rdf +24 -0
  269. data/spec/rdfcore/rdfms-rdf-names-use/test-036.nt +1 -0
  270. data/spec/rdfcore/rdfms-rdf-names-use/test-036.rdf +24 -0
  271. data/spec/rdfcore/rdfms-rdf-names-use/test-037.nt +1 -0
  272. data/spec/rdfcore/rdfms-rdf-names-use/test-037.rdf +24 -0
  273. data/spec/rdfcore/rdfms-rdf-names-use/warn-001.nt +1 -0
  274. data/spec/rdfcore/rdfms-rdf-names-use/warn-001.rdf +23 -0
  275. data/spec/rdfcore/rdfms-rdf-names-use/warn-002.nt +1 -0
  276. data/spec/rdfcore/rdfms-rdf-names-use/warn-002.rdf +25 -0
  277. data/spec/rdfcore/rdfms-rdf-names-use/warn-003.nt +1 -0
  278. data/spec/rdfcore/rdfms-rdf-names-use/warn-003.rdf +24 -0
  279. data/spec/rdfcore/rdfms-reification-required/test001.nt +15 -0
  280. data/spec/rdfcore/rdfms-reification-required/test001.rdf +29 -0
  281. data/spec/rdfcore/rdfms-seq-representation/empty.nt +13 -0
  282. data/spec/rdfcore/rdfms-seq-representation/test001.nt +19 -0
  283. data/spec/rdfcore/rdfms-seq-representation/test001.rdf +33 -0
  284. data/spec/rdfcore/rdfms-seq-representation/test002.nt +14 -0
  285. data/spec/rdfcore/rdfms-seq-representation/test003a.nt +14 -0
  286. data/spec/rdfcore/rdfms-seq-representation/test003b.nt +14 -0
  287. data/spec/rdfcore/rdfms-seq-representation/test004.nt +14 -0
  288. data/spec/rdfcore/rdfms-syntax-incomplete/error001.rdf +26 -0
  289. data/spec/rdfcore/rdfms-syntax-incomplete/error002.rdf +26 -0
  290. data/spec/rdfcore/rdfms-syntax-incomplete/error003.rdf +29 -0
  291. data/spec/rdfcore/rdfms-syntax-incomplete/error004.rdf +25 -0
  292. data/spec/rdfcore/rdfms-syntax-incomplete/error005.rdf +25 -0
  293. data/spec/rdfcore/rdfms-syntax-incomplete/error006.rdf +28 -0
  294. data/spec/rdfcore/rdfms-syntax-incomplete/test001.nt +14 -0
  295. data/spec/rdfcore/rdfms-syntax-incomplete/test001.rdf +28 -0
  296. data/spec/rdfcore/rdfms-syntax-incomplete/test002.nt +19 -0
  297. data/spec/rdfcore/rdfms-syntax-incomplete/test002.rdf +38 -0
  298. data/spec/rdfcore/rdfms-syntax-incomplete/test003.nt +17 -0
  299. data/spec/rdfcore/rdfms-syntax-incomplete/test003.rdf +28 -0
  300. data/spec/rdfcore/rdfms-syntax-incomplete/test004.nt +21 -0
  301. data/spec/rdfcore/rdfms-syntax-incomplete/test004.rdf +36 -0
  302. data/spec/rdfcore/rdfms-uri-substructure/error001.nt +18 -0
  303. data/spec/rdfcore/rdfms-uri-substructure/test001.nt +17 -0
  304. data/spec/rdfcore/rdfms-uri-substructure/test001.rdf +29 -0
  305. data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.nt +13 -0
  306. data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.rdf +33 -0
  307. data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.nt +14 -0
  308. data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.rdf +47 -0
  309. data/spec/rdfcore/rdfms-xmllang/test001.nt +14 -0
  310. data/spec/rdfcore/rdfms-xmllang/test001.rdf +30 -0
  311. data/spec/rdfcore/rdfms-xmllang/test002.nt +14 -0
  312. data/spec/rdfcore/rdfms-xmllang/test002.rdf +29 -0
  313. data/spec/rdfcore/rdfms-xmllang/test003.nt +14 -0
  314. data/spec/rdfcore/rdfms-xmllang/test003.rdf +28 -0
  315. data/spec/rdfcore/rdfms-xmllang/test004.nt +14 -0
  316. data/spec/rdfcore/rdfms-xmllang/test004.rdf +28 -0
  317. data/spec/rdfcore/rdfms-xmllang/test005.nt +14 -0
  318. data/spec/rdfcore/rdfms-xmllang/test005.rdf +28 -0
  319. data/spec/rdfcore/rdfms-xmllang/test006.nt +14 -0
  320. data/spec/rdfcore/rdfms-xmllang/test006.rdf +29 -0
  321. data/spec/rdfcore/rdfms-xmllang/test007a.nt +14 -0
  322. data/spec/rdfcore/rdfms-xmllang/test007b.nt +14 -0
  323. data/spec/rdfcore/rdfms-xmllang/test007c.nt +14 -0
  324. data/spec/rdfcore/rdfs-container-membership-superProperty/not1C.rdf +13 -0
  325. data/spec/rdfcore/rdfs-container-membership-superProperty/not1P.rdf +14 -0
  326. data/spec/rdfcore/rdfs-domain-and-range/nonconclusions005.rdf +28 -0
  327. data/spec/rdfcore/rdfs-domain-and-range/nonconclusions006.rdf +28 -0
  328. data/spec/rdfcore/rdfs-domain-and-range/premises005.rdf +32 -0
  329. data/spec/rdfcore/rdfs-domain-and-range/premises006.rdf +32 -0
  330. data/spec/rdfcore/rdfs-domain-and-range/test001.nt +16 -0
  331. data/spec/rdfcore/rdfs-domain-and-range/test001.rdf +29 -0
  332. data/spec/rdfcore/rdfs-domain-and-range/test002.nt +16 -0
  333. data/spec/rdfcore/rdfs-domain-and-range/test002.rdf +29 -0
  334. data/spec/rdfcore/rdfs-entailment/test001.nt +16 -0
  335. data/spec/rdfcore/rdfs-entailment/test002.nt +15 -0
  336. data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.nt +18 -0
  337. data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.rdf +37 -0
  338. data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.nt +18 -0
  339. data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.rdf +40 -0
  340. data/spec/rdfcore/rdfs-subClassOf-a-Property/test001.nt +15 -0
  341. data/spec/rdfcore/rdfs-subPropertyOf-semantics/test001.nt +24 -0
  342. data/spec/rdfcore/rdfs-subPropertyOf-semantics/test002.nt +21 -0
  343. data/spec/rdfcore/statement-entailment/test001a.nt +12 -0
  344. data/spec/rdfcore/statement-entailment/test001b.nt +2 -0
  345. data/spec/rdfcore/statement-entailment/test002a.nt +2 -0
  346. data/spec/rdfcore/statement-entailment/test002b.nt +5 -0
  347. data/spec/rdfcore/tex-01/test001.rdf +34 -0
  348. data/spec/rdfcore/tex-01/test002.rdf +33 -0
  349. data/spec/rdfcore/unrecognised-xml-attributes/test001.nt +15 -0
  350. data/spec/rdfcore/unrecognised-xml-attributes/test001.rdf +31 -0
  351. data/spec/rdfcore/unrecognised-xml-attributes/test002.nt +14 -0
  352. data/spec/rdfcore/unrecognised-xml-attributes/test002.rdf +32 -0
  353. data/spec/rdfcore/xml-canon/test001.nt +16 -0
  354. data/spec/rdfcore/xml-canon/test001.rdf +28 -0
  355. data/spec/rdfcore/xmlbase/test001.nt +14 -0
  356. data/spec/rdfcore/xmlbase/test001.rdf +27 -0
  357. data/spec/rdfcore/xmlbase/test002.nt +14 -0
  358. data/spec/rdfcore/xmlbase/test002.rdf +28 -0
  359. data/spec/rdfcore/xmlbase/test003.nt +14 -0
  360. data/spec/rdfcore/xmlbase/test003.rdf +25 -0
  361. data/spec/rdfcore/xmlbase/test004.nt +18 -0
  362. data/spec/rdfcore/xmlbase/test004.rdf +27 -0
  363. data/spec/rdfcore/xmlbase/test006.nt +15 -0
  364. data/spec/rdfcore/xmlbase/test006.rdf +26 -0
  365. data/spec/rdfcore/xmlbase/test007.nt +14 -0
  366. data/spec/rdfcore/xmlbase/test007.rdf +25 -0
  367. data/spec/rdfcore/xmlbase/test008.nt +14 -0
  368. data/spec/rdfcore/xmlbase/test008.rdf +25 -0
  369. data/spec/rdfcore/xmlbase/test009.nt +14 -0
  370. data/spec/rdfcore/xmlbase/test009.rdf +26 -0
  371. data/spec/rdfcore/xmlbase/test010.nt +14 -0
  372. data/spec/rdfcore/xmlbase/test010.rdf +26 -0
  373. data/spec/rdfcore/xmlbase/test011.nt +14 -0
  374. data/spec/rdfcore/xmlbase/test011.rdf +27 -0
  375. data/spec/rdfcore/xmlbase/test013.nt +15 -0
  376. data/spec/rdfcore/xmlbase/test013.rdf +28 -0
  377. data/spec/rdfcore/xmlbase/test014.nt +15 -0
  378. data/spec/rdfcore/xmlbase/test014.rdf +28 -0
  379. data/spec/rdfcore/xmlsch-02/test001.rdf +34 -0
  380. data/spec/rdfcore/xmlsch-02/test002.rdf +34 -0
  381. data/spec/rdfcore/xmlsch-02/test003.rdf +37 -0
  382. data/spec/reader_spec.rb +421 -0
  383. data/spec/spec.opts +1 -0
  384. data/spec/spec_helper.rb +50 -0
  385. data/spec/xml_serializer_spec.rb +386 -0
  386. metadata +385 -6
@@ -0,0 +1,1970 @@
1
+ ---
2
+ - !ruby/object:RdfHelper::TestCase
3
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-001.rdf
4
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
5
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-001.rdf
6
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
7
+ name: error-001
8
+ rdf_type: NegativeParserTest
9
+ status: APPROVED
10
+ - !ruby/object:RdfHelper::TestCase
11
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-002.rdf
12
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
13
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-002.rdf
14
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
15
+ name: error-002
16
+ rdf_type: NegativeParserTest
17
+ status: APPROVED
18
+ - !ruby/object:RdfHelper::TestCase
19
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-003.rdf
20
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
21
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-003.rdf
22
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
23
+ name: error-003
24
+ rdf_type: NegativeParserTest
25
+ status: APPROVED
26
+ - !ruby/object:RdfHelper::TestCase
27
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-004.rdf
28
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
29
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-004.rdf
30
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
31
+ name: error-004
32
+ rdf_type: NegativeParserTest
33
+ status: APPROVED
34
+ - !ruby/object:RdfHelper::TestCase
35
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-005.rdf
36
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
37
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-005.rdf
38
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
39
+ name: error-005
40
+ rdf_type: NegativeParserTest
41
+ status: APPROVED
42
+ - !ruby/object:RdfHelper::TestCase
43
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-006.rdf
44
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
45
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-006.rdf
46
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
47
+ name: error-006
48
+ rdf_type: NegativeParserTest
49
+ status: APPROVED
50
+ - !ruby/object:RdfHelper::TestCase
51
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-007.rdf
52
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
53
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-007.rdf
54
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
55
+ name: error-007
56
+ rdf_type: NegativeParserTest
57
+ status: APPROVED
58
+ - !ruby/object:RdfHelper::TestCase
59
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-008.rdf
60
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
61
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-008.rdf
62
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
63
+ name: error-008
64
+ rdf_type: NegativeParserTest
65
+ status: APPROVED
66
+ - !ruby/object:RdfHelper::TestCase
67
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-009.rdf
68
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
69
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-009.rdf
70
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
71
+ name: error-009
72
+ rdf_type: NegativeParserTest
73
+ status: APPROVED
74
+ - !ruby/object:RdfHelper::TestCase
75
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-010.rdf
76
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
77
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-010.rdf
78
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
79
+ name: error-010
80
+ rdf_type: NegativeParserTest
81
+ status: APPROVED
82
+ - !ruby/object:RdfHelper::TestCase
83
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-011.rdf
84
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
85
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-011.rdf
86
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
87
+ name: error-011
88
+ rdf_type: NegativeParserTest
89
+ status: APPROVED
90
+ - !ruby/object:RdfHelper::TestCase
91
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-012.rdf
92
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
93
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-012.rdf
94
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
95
+ name: error-012
96
+ rdf_type: NegativeParserTest
97
+ status: APPROVED
98
+ - !ruby/object:RdfHelper::TestCase
99
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-013.rdf
100
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
101
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-013.rdf
102
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
103
+ name: error-013
104
+ rdf_type: NegativeParserTest
105
+ status: APPROVED
106
+ - !ruby/object:RdfHelper::TestCase
107
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-014.rdf
108
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
109
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-014.rdf
110
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
111
+ name: error-014
112
+ rdf_type: NegativeParserTest
113
+ status: APPROVED
114
+ - !ruby/object:RdfHelper::TestCase
115
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-015.rdf
116
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
117
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-015.rdf
118
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
119
+ name: error-015
120
+ rdf_type: NegativeParserTest
121
+ status: APPROVED
122
+ - !ruby/object:RdfHelper::TestCase
123
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-016.rdf
124
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
125
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-016.rdf
126
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
127
+ name: error-016
128
+ rdf_type: NegativeParserTest
129
+ status: APPROVED
130
+ - !ruby/object:RdfHelper::TestCase
131
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-017.rdf
132
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
133
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-017.rdf
134
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
135
+ name: error-017
136
+ rdf_type: NegativeParserTest
137
+ status: APPROVED
138
+ - !ruby/object:RdfHelper::TestCase
139
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-018.rdf
140
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
141
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-018.rdf
142
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
143
+ name: error-018
144
+ rdf_type: NegativeParserTest
145
+ status: APPROVED
146
+ - !ruby/object:RdfHelper::TestCase
147
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-019.rdf
148
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
149
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-019.rdf
150
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
151
+ name: error-019
152
+ rdf_type: NegativeParserTest
153
+ status: APPROVED
154
+ - !ruby/object:RdfHelper::TestCase
155
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/error-020.rdf
156
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
157
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/error-020.rdf
158
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
159
+ name: error-020
160
+ rdf_type: NegativeParserTest
161
+ status: APPROVED
162
+ - !ruby/object:RdfHelper::TestCase
163
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0001.rdf
164
+ description: "\n\
165
+ \tThis is again legal RDF\n "
166
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0001.rdf
167
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
168
+ name: error0001
169
+ rdf_type: NegativeParserTest
170
+ status: OBSOLETE
171
+ - !ruby/object:RdfHelper::TestCase
172
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0002.rdf
173
+ description: "\n\
174
+ \tThis is again legal RDF\n "
175
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0002.rdf
176
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
177
+ name: error0002
178
+ rdf_type: NegativeParserTest
179
+ status: OBSOLETE
180
+ - !ruby/object:RdfHelper::TestCase
181
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0003.rdf
182
+ description: "\n\
183
+ \tThis is again legal RDF\n "
184
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0003.rdf
185
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
186
+ name: error0003
187
+ rdf_type: NegativeParserTest
188
+ status: OBSOLETE
189
+ - !ruby/object:RdfHelper::TestCase
190
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0004.rdf
191
+ description: "\n\
192
+ \tThis is again legal RDF\n "
193
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0004.rdf
194
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
195
+ name: error0004
196
+ rdf_type: NegativeParserTest
197
+ status: OBSOLETE
198
+ - !ruby/object:RdfHelper::TestCase
199
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0005.rdf
200
+ description: "\n\
201
+ \tThis is again legal RDF\n "
202
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0005.rdf
203
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
204
+ name: error0005
205
+ rdf_type: NegativeParserTest
206
+ status: OBSOLETE
207
+ - !ruby/object:RdfHelper::TestCase
208
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0006.rdf
209
+ description: "\n\
210
+ \tThis is again legal RDF\n "
211
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0006.rdf
212
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
213
+ name: error0006
214
+ rdf_type: NegativeParserTest
215
+ status: OBSOLETE
216
+ - !ruby/object:RdfHelper::TestCase
217
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0007.rdf
218
+ description: "\n\
219
+ \tThis is again legal RDF\n "
220
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0007.rdf
221
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
222
+ name: error0007
223
+ rdf_type: NegativeParserTest
224
+ status: OBSOLETE
225
+ - !ruby/object:RdfHelper::TestCase
226
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0008.rdf
227
+ description: "\n\
228
+ \tThis is again legal RDF\n "
229
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0008.rdf
230
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
231
+ name: error0008
232
+ rdf_type: NegativeParserTest
233
+ status: OBSOLETE
234
+ - !ruby/object:RdfHelper::TestCase
235
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/error0009.rdf
236
+ description: "\n\
237
+ \tThis is again legal RDF\n "
238
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/error0009.rdf
239
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
240
+ name: error0009
241
+ rdf_type: NegativeParserTest
242
+ status: OBSOLETE
243
+ - !ruby/object:RdfHelper::TestCase
244
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/error001.rdf
245
+ description: "\n\
246
+ \tThis test case concerns URIs relative to a non-relative URI scheme base.\n\
247
+ \tIt's beyond the scope of the WG to deal with this; it has therefore not\n\
248
+ \tbeen approved.\n "
249
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/error001.rdf
250
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
251
+ name: error001
252
+ rdf_type: NegativeParserTest
253
+ status: NOT_APPROVED
254
+ - !ruby/object:RdfHelper::TestCase
255
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error001.rdf
256
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
257
+ description: "\n\
258
+ \t The value of rdf:nodeID must match the XML Name production,\n (as modified by XML Namespaces). \n "
259
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error001.rdf
260
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
261
+ name: error001
262
+ rdf_type: NegativeParserTest
263
+ status: APPROVED
264
+ - !ruby/object:RdfHelper::TestCase
265
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/error001.rdf
266
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
267
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/error001.rdf
268
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
269
+ name: error001
270
+ rdf_type: NegativeParserTest
271
+ status: APPROVED
272
+ - !ruby/object:RdfHelper::TestCase
273
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-parseType/error001.rdf
274
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-parseType/error001.rdf
275
+ name: error001
276
+ rdf_type: NegativeParserTest
277
+ status: NOT_APPROVED
278
+ - !ruby/object:RdfHelper::TestCase
279
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf
280
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
281
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf
282
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
283
+ name: error001
284
+ rdf_type: NegativeParserTest
285
+ status: APPROVED
286
+ - !ruby/object:RdfHelper::TestCase
287
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-uris/error001.rdf
288
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0474.html
289
+ description: "\n\
290
+ \tTest for failure for uriref not in Normal Form C.\n "
291
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0113.html
292
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-uris/error001.rdf
293
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-uris
294
+ name: error001
295
+ rdf_type: NegativeParserTest
296
+ status: OBSOLETE
297
+ - !ruby/object:RdfHelper::TestCase
298
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-literals/error001.rdf
299
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Nov/0063.html
300
+ description: "\n\
301
+ \tDoes the treatment of literals conform to charmod ?\n\
302
+ \tTest for failure for literal not in Normal Form C\n\
303
+ This test case has been WITHDRAWN in light of changes to NFC handling\n\
304
+ in concepts\n "
305
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0016.html
306
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-literals/error001.rdf
307
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-literals
308
+ name: error001
309
+ rdf_type: NegativeParserTest
310
+ status: WITHDRAWN
311
+ - !ruby/object:RdfHelper::TestCase
312
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error001.rdf
313
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
314
+ description: "\n\
315
+ \t The value of rdf:ID must match the XML Name production,\n (as modified by XML Namespaces). \n "
316
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error001.rdf
317
+ name: error001
318
+ rdf_type: NegativeParserTest
319
+ status: APPROVED
320
+ - !ruby/object:RdfHelper::TestCase
321
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-abouteach/error001.rdf
322
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
323
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-abouteach/error001.rdf
324
+ name: error001
325
+ rdf_type: NegativeParserTest
326
+ status: APPROVED
327
+ - !ruby/object:RdfHelper::TestCase
328
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-literals/error002.rdf
329
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Nov/0063.html
330
+ description: "\n\
331
+ \tDoes the treatment of literals conform to charmod ?\n\
332
+ \tTest for failure for literal not in Normal Form C\n\
333
+ This test case has been WITHDRAWN in light of changes to NFC handling\n\
334
+ in concepts\n "
335
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0016.html
336
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-literals/error002.rdf
337
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-literals
338
+ name: error002
339
+ rdf_type: NegativeParserTest
340
+ status: WITHDRAWN
341
+ - !ruby/object:RdfHelper::TestCase
342
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf
343
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
344
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf
345
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
346
+ name: error002
347
+ rdf_type: NegativeParserTest
348
+ status: APPROVED
349
+ - !ruby/object:RdfHelper::TestCase
350
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error002.rdf
351
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
352
+ description: "\n\
353
+ \t The value of rdf:nodeID must match the XML Name production,\n (as modified by XML Namespaces). \n "
354
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error002.rdf
355
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
356
+ name: error002
357
+ rdf_type: NegativeParserTest
358
+ status: APPROVED
359
+ - !ruby/object:RdfHelper::TestCase
360
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/error002.rdf
361
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
362
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/error002.rdf
363
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
364
+ name: error002
365
+ rdf_type: NegativeParserTest
366
+ status: APPROVED
367
+ - !ruby/object:RdfHelper::TestCase
368
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-abouteach/error002.rdf
369
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
370
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-abouteach/error002.rdf
371
+ name: error002
372
+ rdf_type: NegativeParserTest
373
+ status: APPROVED
374
+ - !ruby/object:RdfHelper::TestCase
375
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error002.rdf
376
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
377
+ description: "\n\
378
+ \t The value of rdf:ID must match the XML Name production,\n (as modified by XML Namespaces). \n "
379
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error002.rdf
380
+ name: error002
381
+ rdf_type: NegativeParserTest
382
+ status: APPROVED
383
+ - !ruby/object:RdfHelper::TestCase
384
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-parseType/error002.rdf
385
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-parseType/error002.rdf
386
+ name: error002
387
+ rdf_type: NegativeParserTest
388
+ status: NOT_APPROVED
389
+ - !ruby/object:RdfHelper::TestCase
390
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error003.rdf
391
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
392
+ description: "\n\
393
+ \t The value of rdf:nodeID must match the XML Name production,\n (as modified by XML Namespaces). \n "
394
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error003.rdf
395
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
396
+ name: error003
397
+ rdf_type: NegativeParserTest
398
+ status: APPROVED
399
+ - !ruby/object:RdfHelper::TestCase
400
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-parseType/error003.rdf
401
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-parseType/error003.rdf
402
+ name: error003
403
+ rdf_type: NegativeParserTest
404
+ status: NOT_APPROVED
405
+ - !ruby/object:RdfHelper::TestCase
406
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error003.rdf
407
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
408
+ description: "\n\
409
+ \t The value of rdf:ID must match the XML Name production,\n (as modified by XML Namespaces). \n "
410
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error003.rdf
411
+ name: error003
412
+ rdf_type: NegativeParserTest
413
+ status: APPROVED
414
+ - !ruby/object:RdfHelper::TestCase
415
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/error003.rdf
416
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
417
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/error003.rdf
418
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
419
+ name: error003
420
+ rdf_type: NegativeParserTest
421
+ status: APPROVED
422
+ - !ruby/object:RdfHelper::TestCase
423
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error004.rdf
424
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
425
+ description: "\n\
426
+ \t The value of rdf:ID must match the XML Name production,\n (as modified by XML Namespaces). \n "
427
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error004.rdf
428
+ name: error004
429
+ rdf_type: NegativeParserTest
430
+ status: APPROVED
431
+ - !ruby/object:RdfHelper::TestCase
432
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error004.rdf
433
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
434
+ description: "\n\
435
+ \t Cannot have rdf:nodeID and rdf:ID.\n "
436
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error004.rdf
437
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
438
+ name: error004
439
+ rdf_type: NegativeParserTest
440
+ status: APPROVED
441
+ - !ruby/object:RdfHelper::TestCase
442
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error005.rdf
443
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
444
+ description: "\n\
445
+ \t Cannot have rdf:nodeID and rdf:about.\n "
446
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error005.rdf
447
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
448
+ name: error005
449
+ rdf_type: NegativeParserTest
450
+ status: APPROVED
451
+ - !ruby/object:RdfHelper::TestCase
452
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error005.rdf
453
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
454
+ description: "\n\
455
+ \t The value of rdf:ID must match the XML Name production,\n (as modified by XML Namespaces). \n "
456
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error005.rdf
457
+ name: error005
458
+ rdf_type: NegativeParserTest
459
+ status: APPROVED
460
+ - !ruby/object:RdfHelper::TestCase
461
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/error006.rdf
462
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
463
+ description: "\n\
464
+ \t Cannot have rdf:nodeID and rdf:resource.\n "
465
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/error006.rdf
466
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
467
+ name: error006
468
+ rdf_type: NegativeParserTest
469
+ status: APPROVED
470
+ - !ruby/object:RdfHelper::TestCase
471
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error006.rdf
472
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
473
+ description: "\n\
474
+ \t The value of rdf:bagID must match the XML Name production,\n (as modified by XML Namespaces). \n "
475
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error006.rdf
476
+ name: error006
477
+ rdf_type: NegativeParserTest
478
+ status: APPROVED
479
+ - !ruby/object:RdfHelper::TestCase
480
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-id/error007.rdf
481
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
482
+ description: "\n\
483
+ \t The value of rdf:bagID must match the XML Name production,\n (as modified by XML Namespaces). \n "
484
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-id/error007.rdf
485
+ name: error007
486
+ rdf_type: NegativeParserTest
487
+ status: APPROVED
488
+ - !ruby/object:RdfHelper::TestCase
489
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf
490
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Dec/0108.html
491
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf
492
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-difference-between-ID-and-about
493
+ name: error1
494
+ rdf_type: NegativeParserTest
495
+ status: APPROVED
496
+ - !ruby/object:RdfHelper::TestCase
497
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-001.rdf
498
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
499
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-001.rdf
500
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
501
+ name: test-001
502
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-001.nt
503
+ rdf_type: PositiveParserTest
504
+ status: APPROVED
505
+ - !ruby/object:RdfHelper::TestCase
506
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-002.rdf
507
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
508
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-002.rdf
509
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
510
+ name: test-002
511
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-002.nt
512
+ rdf_type: PositiveParserTest
513
+ status: APPROVED
514
+ - !ruby/object:RdfHelper::TestCase
515
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-003.rdf
516
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
517
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-003.rdf
518
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
519
+ name: test-003
520
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-003.nt
521
+ rdf_type: PositiveParserTest
522
+ status: APPROVED
523
+ - !ruby/object:RdfHelper::TestCase
524
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-004.rdf
525
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
526
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-004.rdf
527
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
528
+ name: test-004
529
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-004.nt
530
+ rdf_type: PositiveParserTest
531
+ status: APPROVED
532
+ - !ruby/object:RdfHelper::TestCase
533
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-005.rdf
534
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
535
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-005.rdf
536
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
537
+ name: test-005
538
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-005.nt
539
+ rdf_type: PositiveParserTest
540
+ status: APPROVED
541
+ - !ruby/object:RdfHelper::TestCase
542
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-006.rdf
543
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
544
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-006.rdf
545
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
546
+ name: test-006
547
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-006.nt
548
+ rdf_type: PositiveParserTest
549
+ status: APPROVED
550
+ - !ruby/object:RdfHelper::TestCase
551
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-007.rdf
552
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
553
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-007.rdf
554
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
555
+ name: test-007
556
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-007.nt
557
+ rdf_type: PositiveParserTest
558
+ status: APPROVED
559
+ - !ruby/object:RdfHelper::TestCase
560
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-008.rdf
561
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
562
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-008.rdf
563
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
564
+ name: test-008
565
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-008.nt
566
+ rdf_type: PositiveParserTest
567
+ status: APPROVED
568
+ - !ruby/object:RdfHelper::TestCase
569
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-009.rdf
570
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
571
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-009.rdf
572
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
573
+ name: test-009
574
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-009.nt
575
+ rdf_type: PositiveParserTest
576
+ status: APPROVED
577
+ - !ruby/object:RdfHelper::TestCase
578
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-010.rdf
579
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
580
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-010.rdf
581
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
582
+ name: test-010
583
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-010.nt
584
+ rdf_type: PositiveParserTest
585
+ status: APPROVED
586
+ - !ruby/object:RdfHelper::TestCase
587
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-011.rdf
588
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
589
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-011.rdf
590
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
591
+ name: test-011
592
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-011.nt
593
+ rdf_type: PositiveParserTest
594
+ status: APPROVED
595
+ - !ruby/object:RdfHelper::TestCase
596
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-012.rdf
597
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
598
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-012.rdf
599
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
600
+ name: test-012
601
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-012.nt
602
+ rdf_type: PositiveParserTest
603
+ status: APPROVED
604
+ - !ruby/object:RdfHelper::TestCase
605
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-013.rdf
606
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
607
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-013.rdf
608
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
609
+ name: test-013
610
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-013.nt
611
+ rdf_type: PositiveParserTest
612
+ status: APPROVED
613
+ - !ruby/object:RdfHelper::TestCase
614
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-014.rdf
615
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
616
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-014.rdf
617
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
618
+ name: test-014
619
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-014.nt
620
+ rdf_type: PositiveParserTest
621
+ status: APPROVED
622
+ - !ruby/object:RdfHelper::TestCase
623
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-015.rdf
624
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
625
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-015.rdf
626
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
627
+ name: test-015
628
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-015.nt
629
+ rdf_type: PositiveParserTest
630
+ status: APPROVED
631
+ - !ruby/object:RdfHelper::TestCase
632
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-016.rdf
633
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
634
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-016.rdf
635
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
636
+ name: test-016
637
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-016.nt
638
+ rdf_type: PositiveParserTest
639
+ status: APPROVED
640
+ - !ruby/object:RdfHelper::TestCase
641
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-017.rdf
642
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
643
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-017.rdf
644
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
645
+ name: test-017
646
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-017.nt
647
+ rdf_type: PositiveParserTest
648
+ status: APPROVED
649
+ - !ruby/object:RdfHelper::TestCase
650
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-018.rdf
651
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
652
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-018.rdf
653
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
654
+ name: test-018
655
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-018.nt
656
+ rdf_type: PositiveParserTest
657
+ status: APPROVED
658
+ - !ruby/object:RdfHelper::TestCase
659
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-019.rdf
660
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
661
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-019.rdf
662
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
663
+ name: test-019
664
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-019.nt
665
+ rdf_type: PositiveParserTest
666
+ status: APPROVED
667
+ - !ruby/object:RdfHelper::TestCase
668
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-020.rdf
669
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
670
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-020.rdf
671
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
672
+ name: test-020
673
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-020.nt
674
+ rdf_type: PositiveParserTest
675
+ status: APPROVED
676
+ - !ruby/object:RdfHelper::TestCase
677
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-021.rdf
678
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
679
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-021.rdf
680
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
681
+ name: test-021
682
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-021.nt
683
+ rdf_type: PositiveParserTest
684
+ status: APPROVED
685
+ - !ruby/object:RdfHelper::TestCase
686
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-022.rdf
687
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
688
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-022.rdf
689
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
690
+ name: test-022
691
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-022.nt
692
+ rdf_type: PositiveParserTest
693
+ status: APPROVED
694
+ - !ruby/object:RdfHelper::TestCase
695
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-023.rdf
696
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
697
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-023.rdf
698
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
699
+ name: test-023
700
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-023.nt
701
+ rdf_type: PositiveParserTest
702
+ status: APPROVED
703
+ - !ruby/object:RdfHelper::TestCase
704
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-024.rdf
705
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
706
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-024.rdf
707
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
708
+ name: test-024
709
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-024.nt
710
+ rdf_type: PositiveParserTest
711
+ status: APPROVED
712
+ - !ruby/object:RdfHelper::TestCase
713
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-025.rdf
714
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
715
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-025.rdf
716
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
717
+ name: test-025
718
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-025.nt
719
+ rdf_type: PositiveParserTest
720
+ status: APPROVED
721
+ - !ruby/object:RdfHelper::TestCase
722
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-026.rdf
723
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
724
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-026.rdf
725
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
726
+ name: test-026
727
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-026.nt
728
+ rdf_type: PositiveParserTest
729
+ status: APPROVED
730
+ - !ruby/object:RdfHelper::TestCase
731
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-027.rdf
732
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
733
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-027.rdf
734
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
735
+ name: test-027
736
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-027.nt
737
+ rdf_type: PositiveParserTest
738
+ status: APPROVED
739
+ - !ruby/object:RdfHelper::TestCase
740
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-028.rdf
741
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
742
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-028.rdf
743
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
744
+ name: test-028
745
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-028.nt
746
+ rdf_type: PositiveParserTest
747
+ status: APPROVED
748
+ - !ruby/object:RdfHelper::TestCase
749
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-029.rdf
750
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
751
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-029.rdf
752
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
753
+ name: test-029
754
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-029.nt
755
+ rdf_type: PositiveParserTest
756
+ status: APPROVED
757
+ - !ruby/object:RdfHelper::TestCase
758
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-030.rdf
759
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
760
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-030.rdf
761
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
762
+ name: test-030
763
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-030.nt
764
+ rdf_type: PositiveParserTest
765
+ status: APPROVED
766
+ - !ruby/object:RdfHelper::TestCase
767
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-031.rdf
768
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
769
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-031.rdf
770
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
771
+ name: test-031
772
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-031.nt
773
+ rdf_type: PositiveParserTest
774
+ status: APPROVED
775
+ - !ruby/object:RdfHelper::TestCase
776
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-032.rdf
777
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
778
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-032.rdf
779
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
780
+ name: test-032
781
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-032.nt
782
+ rdf_type: PositiveParserTest
783
+ status: APPROVED
784
+ - !ruby/object:RdfHelper::TestCase
785
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-033.rdf
786
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
787
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-033.rdf
788
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
789
+ name: test-033
790
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-033.nt
791
+ rdf_type: PositiveParserTest
792
+ status: APPROVED
793
+ - !ruby/object:RdfHelper::TestCase
794
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-034.rdf
795
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
796
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-034.rdf
797
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
798
+ name: test-034
799
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-034.nt
800
+ rdf_type: PositiveParserTest
801
+ status: APPROVED
802
+ - !ruby/object:RdfHelper::TestCase
803
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-035.rdf
804
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
805
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-035.rdf
806
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
807
+ name: test-035
808
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-035.nt
809
+ rdf_type: PositiveParserTest
810
+ status: APPROVED
811
+ - !ruby/object:RdfHelper::TestCase
812
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-036.rdf
813
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
814
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-036.rdf
815
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
816
+ name: test-036
817
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-036.nt
818
+ rdf_type: PositiveParserTest
819
+ status: APPROVED
820
+ - !ruby/object:RdfHelper::TestCase
821
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/test-037.rdf
822
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
823
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-037.rdf
824
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
825
+ name: test-037
826
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/test-037.nt
827
+ rdf_type: PositiveParserTest
828
+ status: APPROVED
829
+ - !ruby/object:RdfHelper::TestCase
830
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0001.rdf
831
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
832
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0001.rdf
833
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
834
+ name: test0001
835
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0001.nt
836
+ rdf_type: PositiveParserTest
837
+ status: APPROVED
838
+ - !ruby/object:RdfHelper::TestCase
839
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0002.rdf
840
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
841
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0002.rdf
842
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
843
+ name: test0002
844
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0002.nt
845
+ rdf_type: PositiveParserTest
846
+ status: OBSOLETE
847
+ - !ruby/object:RdfHelper::TestCase
848
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0003.rdf
849
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
850
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0003.rdf
851
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
852
+ name: test0003
853
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0003.nt
854
+ rdf_type: PositiveParserTest
855
+ status: APPROVED
856
+ - !ruby/object:RdfHelper::TestCase
857
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0004.rdf
858
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
859
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0004.rdf
860
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
861
+ name: test0004
862
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0004.nt
863
+ rdf_type: PositiveParserTest
864
+ status: APPROVED
865
+ - !ruby/object:RdfHelper::TestCase
866
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0005.rdf
867
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
868
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0005.rdf
869
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
870
+ name: test0005
871
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0005.nt
872
+ rdf_type: PositiveParserTest
873
+ status: APPROVED
874
+ - !ruby/object:RdfHelper::TestCase
875
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0006.rdf
876
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
877
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0006.rdf
878
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
879
+ name: test0006
880
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0006.nt
881
+ rdf_type: PositiveParserTest
882
+ status: APPROVED
883
+ - !ruby/object:RdfHelper::TestCase
884
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0007.rdf
885
+ description: "\n\
886
+ \trdf:aboutEach no longer valid.\n "
887
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0007.rdf
888
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
889
+ name: test0007
890
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0007.nt
891
+ rdf_type: PositiveParserTest
892
+ status: OBSOLETE
893
+ - !ruby/object:RdfHelper::TestCase
894
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0008.rdf
895
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jun/0008.html
896
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0008.rdf
897
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
898
+ name: test0008
899
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0008.nt
900
+ rdf_type: PositiveParserTest
901
+ status: OBSOLETE
902
+ - !ruby/object:RdfHelper::TestCase
903
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0009.rdf
904
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
905
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0009.rdf
906
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
907
+ name: test0009
908
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0009.nt
909
+ rdf_type: PositiveParserTest
910
+ status: APPROVED
911
+ - !ruby/object:RdfHelper::TestCase
912
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/amp-in-url/test001.rdf
913
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Sep/0326.html
914
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/amp-in-url/test001.rdf
915
+ name: test001
916
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/amp-in-url/test001.nt
917
+ rdf_type: PositiveParserTest
918
+ status: APPROVED
919
+ - !ruby/object:RdfHelper::TestCase
920
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf
921
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
922
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf
923
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
924
+ name: test001
925
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.nt
926
+ rdf_type: PositiveParserTest
927
+ status: APPROVED
928
+ - !ruby/object:RdfHelper::TestCase
929
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-para196/test001.rdf
930
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jan/0095.html
931
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-para196/test001.rdf
932
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-para196
933
+ name: test001
934
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-para196/test001.nt
935
+ rdf_type: PositiveParserTest
936
+ status: APPROVED
937
+ - !ruby/object:RdfHelper::TestCase
938
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-reification-required/test001.rdf
939
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
940
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-reification-required/test001.rdf
941
+ name: test001
942
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-reification-required/test001.nt
943
+ rdf_type: PositiveParserTest
944
+ status: APPROVED
945
+ - !ruby/object:RdfHelper::TestCase
946
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-uris/test001.rdf
947
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0474.html
948
+ description: "\n\
949
+ \tA uriref is allowed to match non-US ASCII forms \n conforming to Unicode Normal Form C.\n No escaping algorithm is applied.\n "
950
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0113.html
951
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-uris/test001.rdf
952
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-uris
953
+ name: test001
954
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-uris/test001.nt
955
+ rdf_type: PositiveParserTest
956
+ status: APPROVED
957
+ - !ruby/object:RdfHelper::TestCase
958
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf
959
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
960
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf
961
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-not-id-and-resource-attr
962
+ name: test001
963
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.nt
964
+ rdf_type: PositiveParserTest
965
+ status: APPROVED
966
+ - !ruby/object:RdfHelper::TestCase
967
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-element-not-mandatory/test001.rdf
968
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Oct/0071.html
969
+ description: "\n A surrounding rdf:RDF element is no longer mandatory.\n "
970
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-element-not-mandatory/test001.rdf
971
+ name: test001
972
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-element-not-mandatory/test001.nt
973
+ rdf_type: PositiveParserTest
974
+ status: APPROVED
975
+ - !ruby/object:RdfHelper::TestCase
976
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-literals/test001.rdf
977
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0056.html
978
+ description: "\n\
979
+ \tDoes the treatment of literals conform to charmod ?\n\
980
+ \tTest for success of legal Normal Form C literal\n "
981
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0016.html
982
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-literals/test001.rdf
983
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-literals
984
+ name: test001
985
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-literals/test001.nt
986
+ rdf_type: PositiveParserTest
987
+ status: APPROVED
988
+ - !ruby/object:RdfHelper::TestCase
989
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-uri-substructure/test001.rdf
990
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
991
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-uri-substructure/test001.rdf
992
+ name: test001
993
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-uri-substructure/test001.nt
994
+ rdf_type: PositiveParserTest
995
+ status: APPROVED
996
+ - !ruby/object:RdfHelper::TestCase
997
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test001.rdf
998
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
999
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test001.rdf
1000
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1001
+ name: test001
1002
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test001.nt
1003
+ rdf_type: PositiveParserTest
1004
+ status: APPROVED
1005
+ - !ruby/object:RdfHelper::TestCase
1006
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/datatypes/test001.rdf
1007
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Nov/0611.html
1008
+ description: "\n\
1009
+ \tA simple datatype production; a language+datatype production. Simply duplicate the\n\
1010
+ \tconstructs under http://www.w3.org/2000/10/rdf-tests/rdfcore/ntriples/test.nt\n "
1011
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/datatypes/test001.rdf
1012
+ name: test001
1013
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/datatypes/test001.nt
1014
+ rdf_type: PositiveParserTest
1015
+ status: APPROVED
1016
+ - !ruby/object:RdfHelper::TestCase
1017
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xml-canon/test001.rdf
1018
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Aug/0138.html
1019
+ description: "\n\
1020
+ Demonstrating the canonicalisation of XMLLiterals.\n "
1021
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xml-canon/test001.rdf
1022
+ name: test001
1023
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xml-canon/test001.nt
1024
+ rdf_type: PositiveParserTest
1025
+ status: APPROVED
1026
+ - !ruby/object:RdfHelper::TestCase
1027
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xml-literal-namespaces/test001.rdf
1028
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1029
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xml-literal-namespaces/test001.rdf
1030
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-literal-namespaces
1031
+ name: test001
1032
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xml-literal-namespaces/test001.nt
1033
+ rdf_type: PositiveParserTest
1034
+ status: APPROVED
1035
+ - !ruby/object:RdfHelper::TestCase
1036
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/unrecognised-xml-attributes/test001.rdf
1037
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jan/0152.html
1038
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/unrecognised-xml-attributes/test001.rdf
1039
+ name: test001
1040
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/unrecognised-xml-attributes/test001.nt
1041
+ rdf_type: PositiveParserTest
1042
+ status: APPROVED
1043
+ - !ruby/object:RdfHelper::TestCase
1044
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test001.rdf
1045
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0034.html
1046
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test001.rdf
1047
+ name: test001
1048
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test001.nt
1049
+ rdf_type: PositiveParserTest
1050
+ status: APPROVED
1051
+ - !ruby/object:RdfHelper::TestCase
1052
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-identity-anon-resources/test001.rdf
1053
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1054
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test001.rdf
1055
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
1056
+ name: test001
1057
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test001.nt
1058
+ rdf_type: PositiveParserTest
1059
+ status: APPROVED
1060
+ - !ruby/object:RdfHelper::TestCase
1061
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test001.rdf
1062
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1063
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test001.rdf
1064
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1065
+ name: test001
1066
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test001.nt
1067
+ rdf_type: PositiveParserTest
1068
+ status: APPROVED
1069
+ - !ruby/object:RdfHelper::TestCase
1070
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-duplicate-member-props/test001.rdf
1071
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002May/0028.html
1072
+ description: "\n\
1073
+ The question posed to the RDF WG was: should an RDF document containing\n\
1074
+ multiple rdf:_n properties (with the same n) on an element be rejected as\n\
1075
+ illegal?\n\
1076
+ The WG decided that a parser should accept that case as legal RDF.\n "
1077
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-duplicate-member-props/test001.rdf
1078
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-duplicate-member-props
1079
+ name: test001
1080
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-duplicate-member-props/test001.nt
1081
+ rdf_type: PositiveParserTest
1082
+ status: APPROVED
1083
+ - !ruby/object:RdfHelper::TestCase
1084
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-literal-is-xml-structure/test001.rdf
1085
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test001.rdf
1086
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-literal-is-xml-structure
1087
+ name: test001
1088
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test001.nt
1089
+ rdf_type: PositiveParserTest
1090
+ status: NOT_APPROVED
1091
+ - !ruby/object:RdfHelper::TestCase
1092
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/test001.rdf
1093
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1094
+ description: "\n\
1095
+ \trdf:nodeID can be used to label a blank node.\n "
1096
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test001.rdf
1097
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
1098
+ name: test001
1099
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test001.nt
1100
+ rdf_type: PositiveParserTest
1101
+ status: APPROVED
1102
+ - !ruby/object:RdfHelper::TestCase
1103
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test001.rdf
1104
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1105
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test001.rdf
1106
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1107
+ name: test001
1108
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test001.nt
1109
+ rdf_type: PositiveParserTest
1110
+ status: OBSOLETE
1111
+ - !ruby/object:RdfHelper::TestCase
1112
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-seq-representation/test001.rdf
1113
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002May/0159.html
1114
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-seq-representation/test001.rdf
1115
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-seq-representation
1116
+ name: test001
1117
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-seq-representation/test001.nt
1118
+ rdf_type: PositiveParserTest
1119
+ status: APPROVED
1120
+ - !ruby/object:RdfHelper::TestCase
1121
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfs-domain-and-range/test001.rdf
1122
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1123
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test001.rdf
1124
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfs-domain-and-range
1125
+ name: test001
1126
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test001.nt
1127
+ rdf_type: PositiveParserTest
1128
+ status: APPROVED
1129
+ - !ruby/object:RdfHelper::TestCase
1130
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0010.rdf
1131
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1132
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0010.rdf
1133
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
1134
+ name: test0010
1135
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0010.nt
1136
+ rdf_type: PositiveParserTest
1137
+ status: APPROVED
1138
+ - !ruby/object:RdfHelper::TestCase
1139
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0011.rdf
1140
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1141
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0011.rdf
1142
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
1143
+ name: test0011
1144
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0011.nt
1145
+ rdf_type: PositiveParserTest
1146
+ status: APPROVED
1147
+ - !ruby/object:RdfHelper::TestCase
1148
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0012.rdf
1149
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1150
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0012.rdf
1151
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
1152
+ name: test0012
1153
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0012.nt
1154
+ rdf_type: PositiveParserTest
1155
+ status: APPROVED
1156
+ - !ruby/object:RdfHelper::TestCase
1157
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0013.rdf
1158
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1159
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0013.rdf
1160
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
1161
+ name: test0013
1162
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0013.nt
1163
+ rdf_type: PositiveParserTest
1164
+ status: APPROVED
1165
+ - !ruby/object:RdfHelper::TestCase
1166
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-ns-prefix-confusion/test0014.rdf
1167
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1168
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0014.rdf
1169
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-ns-prefix-confusion
1170
+ name: test0014
1171
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-ns-prefix-confusion/test0014.nt
1172
+ rdf_type: PositiveParserTest
1173
+ status: APPROVED
1174
+ - !ruby/object:RdfHelper::TestCase
1175
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test002.rdf
1176
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1177
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test002.rdf
1178
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1179
+ name: test002
1180
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test002.nt
1181
+ rdf_type: PositiveParserTest
1182
+ status: OBSOLETE
1183
+ - !ruby/object:RdfHelper::TestCase
1184
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf
1185
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1186
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf
1187
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1188
+ name: test002
1189
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.nt
1190
+ rdf_type: PositiveParserTest
1191
+ status: APPROVED
1192
+ - !ruby/object:RdfHelper::TestCase
1193
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/test002.rdf
1194
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1195
+ description: "\n\
1196
+ \trdf:nodeID can be used to label a blank node.\n These have file scope and are distinct from any\n unlabelled blank nodes.\n "
1197
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test002.rdf
1198
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
1199
+ name: test002
1200
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test002.nt
1201
+ rdf_type: PositiveParserTest
1202
+ status: APPROVED
1203
+ - !ruby/object:RdfHelper::TestCase
1204
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test002.rdf
1205
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0034.html
1206
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test002.rdf
1207
+ name: test002
1208
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test002.nt
1209
+ rdf_type: PositiveParserTest
1210
+ status: APPROVED
1211
+ - !ruby/object:RdfHelper::TestCase
1212
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfs-domain-and-range/test002.rdf
1213
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1214
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test002.rdf
1215
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfs-domain-and-range
1216
+ name: test002
1217
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test002.nt
1218
+ rdf_type: PositiveParserTest
1219
+ status: APPROVED
1220
+ - !ruby/object:RdfHelper::TestCase
1221
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xml-literal-namespaces/test002.rdf
1222
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1223
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xml-literal-namespaces/test002.rdf
1224
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-literal-namespaces
1225
+ name: test002
1226
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xml-literal-namespaces/test002.nt
1227
+ rdf_type: PositiveParserTest
1228
+ status: APPROVED
1229
+ - !ruby/object:RdfHelper::TestCase
1230
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/unrecognised-xml-attributes/test002.rdf
1231
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jan/0152.html
1232
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/unrecognised-xml-attributes/test002.rdf
1233
+ name: test002
1234
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/unrecognised-xml-attributes/test002.nt
1235
+ rdf_type: PositiveParserTest
1236
+ status: APPROVED
1237
+ - !ruby/object:RdfHelper::TestCase
1238
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test002.rdf
1239
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1240
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test002.rdf
1241
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1242
+ name: test002
1243
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test002.nt
1244
+ rdf_type: PositiveParserTest
1245
+ status: APPROVED
1246
+ - !ruby/object:RdfHelper::TestCase
1247
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/datatypes/test002.rdf
1248
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Nov/0611.html
1249
+ description: "\n\
1250
+ \tA parser is not required to know about well-formed datatyped literals.\n "
1251
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/datatypes/test002.rdf
1252
+ name: test002
1253
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/datatypes/test002.nt
1254
+ rdf_type: PositiveParserTest
1255
+ status: APPROVED
1256
+ - !ruby/object:RdfHelper::TestCase
1257
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-literal-is-xml-structure/test002.rdf
1258
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test002.rdf
1259
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-literal-is-xml-structure
1260
+ name: test002
1261
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test002.nt
1262
+ rdf_type: PositiveParserTest
1263
+ status: NOT_APPROVED
1264
+ - !ruby/object:RdfHelper::TestCase
1265
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf
1266
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1267
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf
1268
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-not-id-and-resource-attr
1269
+ name: test002
1270
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.nt
1271
+ rdf_type: PositiveParserTest
1272
+ status: APPROVED
1273
+ - !ruby/object:RdfHelper::TestCase
1274
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-charmod-uris/test002.rdf
1275
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0474.html
1276
+ description: "\n\
1277
+ \tA uriref which already has % escaping is permitted.\n No unescaping algorithm is applied.\n "
1278
+ discussion: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Apr/0113.html
1279
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-uris/test002.rdf
1280
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-charmod-uris
1281
+ name: test002
1282
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-charmod-uris/test002.nt
1283
+ rdf_type: PositiveParserTest
1284
+ status: APPROVED
1285
+ - !ruby/object:RdfHelper::TestCase
1286
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-identity-anon-resources/test002.rdf
1287
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1288
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test002.rdf
1289
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
1290
+ name: test002
1291
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test002.nt
1292
+ rdf_type: PositiveParserTest
1293
+ status: APPROVED
1294
+ - !ruby/object:RdfHelper::TestCase
1295
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test002.rdf
1296
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1297
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test002.rdf
1298
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1299
+ name: test002
1300
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test002.nt
1301
+ rdf_type: PositiveParserTest
1302
+ status: APPROVED
1303
+ - !ruby/object:RdfHelper::TestCase
1304
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test003.rdf
1305
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1306
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test003.rdf
1307
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1308
+ name: test003
1309
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test003.nt
1310
+ rdf_type: PositiveParserTest
1311
+ status: OBSOLETE
1312
+ - !ruby/object:RdfHelper::TestCase
1313
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/test003.rdf
1314
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1315
+ description: "\n On an rdf:Description or typed node rdf:nodeID behaves\n similarly to an rdf:about.\n "
1316
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test003.rdf
1317
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
1318
+ name: test003
1319
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test003.nt
1320
+ rdf_type: PositiveParserTest
1321
+ status: APPROVED
1322
+ - !ruby/object:RdfHelper::TestCase
1323
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf
1324
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1325
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf
1326
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1327
+ name: test003
1328
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.nt
1329
+ rdf_type: PositiveParserTest
1330
+ status: APPROVED
1331
+ - !ruby/object:RdfHelper::TestCase
1332
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test003.rdf
1333
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1334
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test003.rdf
1335
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1336
+ name: test003
1337
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test003.nt
1338
+ rdf_type: PositiveParserTest
1339
+ status: APPROVED
1340
+ - !ruby/object:RdfHelper::TestCase
1341
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test003.rdf
1342
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0034.html
1343
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test003.rdf
1344
+ name: test003
1345
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test003.nt
1346
+ rdf_type: PositiveParserTest
1347
+ status: APPROVED
1348
+ - !ruby/object:RdfHelper::TestCase
1349
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-identity-anon-resources/test003.rdf
1350
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1351
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test003.rdf
1352
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
1353
+ name: test003
1354
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test003.nt
1355
+ rdf_type: PositiveParserTest
1356
+ status: APPROVED
1357
+ - !ruby/object:RdfHelper::TestCase
1358
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-not-id-and-resource-attr/test003.rdf
1359
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1360
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test003.rdf
1361
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-not-id-and-resource-attr
1362
+ name: test003
1363
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test003.nt
1364
+ rdf_type: PositiveParserTest
1365
+ status: OBSOLETE
1366
+ - !ruby/object:RdfHelper::TestCase
1367
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test003.rdf
1368
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1369
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test003.rdf
1370
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1371
+ name: test003
1372
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test003.nt
1373
+ rdf_type: PositiveParserTest
1374
+ status: APPROVED
1375
+ - !ruby/object:RdfHelper::TestCase
1376
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-literal-is-xml-structure/test003.rdf
1377
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test003.rdf
1378
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-literal-is-xml-structure
1379
+ name: test003
1380
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test003.nt
1381
+ rdf_type: PositiveParserTest
1382
+ status: NOT_APPROVED
1383
+ - !ruby/object:RdfHelper::TestCase
1384
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfs-domain-and-range/test003.rdf
1385
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test003.rdf
1386
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfs-domain-and-range
1387
+ name: test003
1388
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test003.nt
1389
+ rdf_type: PositiveParserTest
1390
+ status: NOT_APPROVED
1391
+ - !ruby/object:RdfHelper::TestCase
1392
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-syntax-incomplete/test004.rdf
1393
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1394
+ description: "\n On a property element rdf:nodeID behaves\n similarly to rdf:resource.\n "
1395
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test004.rdf
1396
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-syntax-incomplete
1397
+ name: test004
1398
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-syntax-incomplete/test004.nt
1399
+ rdf_type: PositiveParserTest
1400
+ status: APPROVED
1401
+ - !ruby/object:RdfHelper::TestCase
1402
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test004.rdf
1403
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1404
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test004.rdf
1405
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1406
+ name: test004
1407
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test004.nt
1408
+ rdf_type: PositiveParserTest
1409
+ status: OBSOLETE
1410
+ - !ruby/object:RdfHelper::TestCase
1411
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-literal-is-xml-structure/test004.rdf
1412
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test004.rdf
1413
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-literal-is-xml-structure
1414
+ name: test004
1415
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test004.nt
1416
+ rdf_type: PositiveParserTest
1417
+ status: NOT_APPROVED
1418
+ - !ruby/object:RdfHelper::TestCase
1419
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfs-domain-and-range/test004.rdf
1420
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test004.rdf
1421
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfs-domain-and-range
1422
+ name: test004
1423
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfs-domain-and-range/test004.nt
1424
+ rdf_type: PositiveParserTest
1425
+ status: NOT_APPROVED
1426
+ - !ruby/object:RdfHelper::TestCase
1427
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test004.rdf
1428
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0034.html
1429
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test004.rdf
1430
+ name: test004
1431
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test004.nt
1432
+ rdf_type: PositiveParserTest
1433
+ status: APPROVED
1434
+ - !ruby/object:RdfHelper::TestCase
1435
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test004.rdf
1436
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1437
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test004.rdf
1438
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1439
+ name: test004
1440
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test004.nt
1441
+ rdf_type: PositiveParserTest
1442
+ status: APPROVED
1443
+ - !ruby/object:RdfHelper::TestCase
1444
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-identity-anon-resources/test004.rdf
1445
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1446
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test004.rdf
1447
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
1448
+ name: test004
1449
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test004.nt
1450
+ rdf_type: PositiveParserTest
1451
+ status: APPROVED
1452
+ - !ruby/object:RdfHelper::TestCase
1453
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf
1454
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1455
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf
1456
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-not-id-and-resource-attr
1457
+ name: test004
1458
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.nt
1459
+ rdf_type: PositiveParserTest
1460
+ status: APPROVED
1461
+ - !ruby/object:RdfHelper::TestCase
1462
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test004.rdf
1463
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1464
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test004.rdf
1465
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1466
+ name: test004
1467
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test004.nt
1468
+ rdf_type: PositiveParserTest
1469
+ status: APPROVED
1470
+ - !ruby/object:RdfHelper::TestCase
1471
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf
1472
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1473
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf
1474
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1475
+ name: test004
1476
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.nt
1477
+ rdf_type: PositiveParserTest
1478
+ status: APPROVED
1479
+ - !ruby/object:RdfHelper::TestCase
1480
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf
1481
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1482
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf
1483
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-not-id-and-resource-attr
1484
+ name: test005
1485
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.nt
1486
+ rdf_type: PositiveParserTest
1487
+ status: APPROVED
1488
+ - !ruby/object:RdfHelper::TestCase
1489
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-literal-is-xml-structure/test005.rdf
1490
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test005.rdf
1491
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-literal-is-xml-structure
1492
+ name: test005
1493
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-literal-is-xml-structure/test005.nt
1494
+ rdf_type: PositiveParserTest
1495
+ status: NOT_APPROVED
1496
+ - !ruby/object:RdfHelper::TestCase
1497
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test005.rdf
1498
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1499
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test005.rdf
1500
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1501
+ name: test005
1502
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test005.nt
1503
+ rdf_type: PositiveParserTest
1504
+ status: APPROVED
1505
+ - !ruby/object:RdfHelper::TestCase
1506
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test005.rdf
1507
+ description: "\n\
1508
+ This is not valid rdf/xml. The embedding of RDF/XML in other XML formats is\n\
1509
+ beyond the scope of these test cases. Test case withdrawn.\n "
1510
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test005.rdf
1511
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1512
+ name: test005
1513
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test005.nt
1514
+ rdf_type: PositiveParserTest
1515
+ status: OBSOLETE
1516
+ - !ruby/object:RdfHelper::TestCase
1517
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-identity-anon-resources/test005.rdf
1518
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Oct/0405.html
1519
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test005.rdf
1520
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
1521
+ name: test005
1522
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-identity-anon-resources/test005.nt
1523
+ rdf_type: PositiveParserTest
1524
+ status: APPROVED
1525
+ - !ruby/object:RdfHelper::TestCase
1526
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test005.rdf
1527
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1528
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test005.rdf
1529
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1530
+ name: test005
1531
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test005.nt
1532
+ rdf_type: PositiveParserTest
1533
+ status: OBSOLETE
1534
+ - !ruby/object:RdfHelper::TestCase
1535
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test005.rdf
1536
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0034.html
1537
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test005.rdf
1538
+ name: test005
1539
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test005.nt
1540
+ rdf_type: PositiveParserTest
1541
+ status: APPROVED
1542
+ - !ruby/object:RdfHelper::TestCase
1543
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test005.rdf
1544
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
1545
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test005.rdf
1546
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1547
+ name: test005
1548
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test005.nt
1549
+ rdf_type: PositiveParserTest
1550
+ status: OBSOLETED
1551
+ - !ruby/object:RdfHelper::TestCase
1552
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf
1553
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1554
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf
1555
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1556
+ name: test006
1557
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.nt
1558
+ rdf_type: PositiveParserTest
1559
+ status: APPROVED
1560
+ - !ruby/object:RdfHelper::TestCase
1561
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test006.rdf
1562
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1563
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test006.rdf
1564
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1565
+ name: test006
1566
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test006.nt
1567
+ rdf_type: PositiveParserTest
1568
+ status: OBSOLETE
1569
+ - !ruby/object:RdfHelper::TestCase
1570
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test006.rdf
1571
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1572
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test006.rdf
1573
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1574
+ name: test006
1575
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test006.nt
1576
+ rdf_type: PositiveParserTest
1577
+ status: APPROVED
1578
+ - !ruby/object:RdfHelper::TestCase
1579
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test006.rdf
1580
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1581
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test006.rdf
1582
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1583
+ name: test006
1584
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test006.nt
1585
+ rdf_type: PositiveParserTest
1586
+ status: APPROVED
1587
+ - !ruby/object:RdfHelper::TestCase
1588
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-xmllang/test006.rdf
1589
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1590
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test006.rdf
1591
+ name: test006
1592
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-xmllang/test006.nt
1593
+ rdf_type: PositiveParserTest
1594
+ status: APPROVED
1595
+ - !ruby/object:RdfHelper::TestCase
1596
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf
1597
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1598
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf
1599
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1600
+ name: test007
1601
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.nt
1602
+ rdf_type: PositiveParserTest
1603
+ status: APPROVED
1604
+ - !ruby/object:RdfHelper::TestCase
1605
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test007.rdf
1606
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1607
+ description: "\n\
1608
+ rdf:bagID is forbidden on property element prop with an rdf:resource or\n\
1609
+ rdf:parseType attribute: the following is in error.\n "
1610
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test007.rdf
1611
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1612
+ name: test007
1613
+ rdf_type: NegativeParserTest
1614
+ status: OBSOLETE
1615
+ - !ruby/object:RdfHelper::TestCase
1616
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test007.rdf
1617
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1618
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test007.rdf
1619
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1620
+ name: test007
1621
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test007.nt
1622
+ rdf_type: PositiveParserTest
1623
+ status: APPROVED
1624
+ - !ruby/object:RdfHelper::TestCase
1625
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test007.rdf
1626
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1627
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test007.rdf
1628
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1629
+ name: test007
1630
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test007.nt
1631
+ rdf_type: PositiveParserTest
1632
+ status: APPROVED
1633
+ - !ruby/object:RdfHelper::TestCase
1634
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test008.rdf
1635
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1636
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test008.rdf
1637
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1638
+ name: test008
1639
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test008.nt
1640
+ rdf_type: PositiveParserTest
1641
+ status: APPROVED
1642
+ - !ruby/object:RdfHelper::TestCase
1643
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test008.rdf
1644
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1645
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test008.rdf
1646
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1647
+ name: test008
1648
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test008.nt
1649
+ rdf_type: PositiveParserTest
1650
+ status: APPROVED
1651
+ - !ruby/object:RdfHelper::TestCase
1652
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf
1653
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Jul/0000.html
1654
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf
1655
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdf-containers-syntax-vs-schema
1656
+ name: test008
1657
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.nt
1658
+ rdf_type: PositiveParserTest
1659
+ status: APPROVED
1660
+ - !ruby/object:RdfHelper::TestCase
1661
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test008.rdf
1662
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1663
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test008.rdf
1664
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1665
+ name: test008
1666
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test008.nt
1667
+ rdf_type: PositiveParserTest
1668
+ status: OBSOLETE
1669
+ - !ruby/object:RdfHelper::TestCase
1670
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test009.rdf
1671
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1672
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test009.rdf
1673
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1674
+ name: test009
1675
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test009.nt
1676
+ rdf_type: PositiveParserTest
1677
+ status: APPROVED
1678
+ - !ruby/object:RdfHelper::TestCase
1679
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test009.rdf
1680
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1681
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test009.rdf
1682
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1683
+ name: test009
1684
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test009.nt
1685
+ rdf_type: PositiveParserTest
1686
+ status: APPROVED
1687
+ - !ruby/object:RdfHelper::TestCase
1688
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test009.rdf
1689
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1690
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test009.rdf
1691
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1692
+ name: test009
1693
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test009.nt
1694
+ rdf_type: PositiveParserTest
1695
+ status: OBSOLETE
1696
+ - !ruby/object:RdfHelper::TestCase
1697
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test010.rdf
1698
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1699
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test010.rdf
1700
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1701
+ name: test010
1702
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test010.nt
1703
+ rdf_type: PositiveParserTest
1704
+ status: APPROVED
1705
+ - !ruby/object:RdfHelper::TestCase
1706
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test010.rdf
1707
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1708
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test010.rdf
1709
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1710
+ name: test010
1711
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test010.nt
1712
+ rdf_type: PositiveParserTest
1713
+ status: APPROVED
1714
+ - !ruby/object:RdfHelper::TestCase
1715
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test010.rdf
1716
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1717
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n\
1718
+ \t\tOne of test010a and test010b SHOULD pass, at least.\n "
1719
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test010.rdf
1720
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1721
+ name: test010a
1722
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test010a.nt
1723
+ rdf_type: PositiveParserTest
1724
+ status: OBSOLETE
1725
+ - !ruby/object:RdfHelper::TestCase
1726
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test010.rdf
1727
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1728
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n "
1729
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test010.rdf
1730
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1731
+ name: test010b
1732
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test010b.nt
1733
+ rdf_type: PositiveParserTest
1734
+ status: OBSOLETE
1735
+ - !ruby/object:RdfHelper::TestCase
1736
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test011.rdf
1737
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1738
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test011.rdf
1739
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1740
+ name: test011
1741
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test011.nt
1742
+ rdf_type: PositiveParserTest
1743
+ status: APPROVED
1744
+ - !ruby/object:RdfHelper::TestCase
1745
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test011.rdf
1746
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1747
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test011.rdf
1748
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1749
+ name: test011
1750
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test011.nt
1751
+ rdf_type: PositiveParserTest
1752
+ status: APPROVED
1753
+ - !ruby/object:RdfHelper::TestCase
1754
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test011.rdf
1755
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1756
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n\
1757
+ \t\tOne of test011a and test011b SHOULD pass, at least.\n "
1758
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test011.rdf
1759
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1760
+ name: test011a
1761
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test011a.nt
1762
+ rdf_type: PositiveParserTest
1763
+ status: OBSOLETE
1764
+ - !ruby/object:RdfHelper::TestCase
1765
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test011.rdf
1766
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1767
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n "
1768
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test011.rdf
1769
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1770
+ name: test011b
1771
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test011b.nt
1772
+ rdf_type: PositiveParserTest
1773
+ status: OBSOLETE
1774
+ - !ruby/object:RdfHelper::TestCase
1775
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test012.rdf
1776
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1777
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test012.rdf
1778
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1779
+ name: test012
1780
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test012.nt
1781
+ rdf_type: PositiveParserTest
1782
+ status: APPROVED
1783
+ - !ruby/object:RdfHelper::TestCase
1784
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test012.rdf
1785
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Oct/0217.html
1786
+ description: "\n\
1787
+ Test case WITHDRAWN in light of 2396bis\n "
1788
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test012.rdf
1789
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1790
+ name: test012
1791
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test012.nt
1792
+ rdf_type: PositiveParserTest
1793
+ status: WITHDRAWN
1794
+ - !ruby/object:RdfHelper::TestCase
1795
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test012.rdf
1796
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1797
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n\
1798
+ \t\tOne of test012a and test012b SHOULD pass, at least.\n "
1799
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test012.rdf
1800
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1801
+ name: test012a
1802
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test012a.nt
1803
+ rdf_type: PositiveParserTest
1804
+ status: OBSOLETE
1805
+ - !ruby/object:RdfHelper::TestCase
1806
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-nested-bagIDs/test012.rdf
1807
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1808
+ description: "\n Two property attributes and a property element on an rdf:Description.\n Since the property attributes are not ordered under document\n order, two different n-triples files corresponding to both\n possible orderings are permitted. \n "
1809
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test012.rdf
1810
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-nested-bagIDs
1811
+ name: test012b
1812
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-nested-bagIDs/test012b.nt
1813
+ rdf_type: PositiveParserTest
1814
+ status: OBSOLETE
1815
+ - !ruby/object:RdfHelper::TestCase
1816
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test013.rdf
1817
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1818
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test013.rdf
1819
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1820
+ name: test013
1821
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test013.nt
1822
+ rdf_type: PositiveParserTest
1823
+ status: APPROVED
1824
+ - !ruby/object:RdfHelper::TestCase
1825
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test013.rdf
1826
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1827
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test013.rdf
1828
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1829
+ name: test013
1830
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test013.nt
1831
+ rdf_type: PositiveParserTest
1832
+ status: APPROVED
1833
+ - !ruby/object:RdfHelper::TestCase
1834
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test014.rdf
1835
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1836
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test014.rdf
1837
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1838
+ name: test014
1839
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test014.nt
1840
+ rdf_type: PositiveParserTest
1841
+ status: APPROVED
1842
+ - !ruby/object:RdfHelper::TestCase
1843
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test014.rdf
1844
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1845
+ description: "\n\
1846
+ \tTest output corrected to use correct base URL.\n "
1847
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test014.rdf
1848
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1849
+ name: test014
1850
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test014.nt
1851
+ rdf_type: PositiveParserTest
1852
+ status: APPROVED
1853
+ - !ruby/object:RdfHelper::TestCase
1854
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test015.rdf
1855
+ approval: http://www.w3.org/2000/11/mr76/rdfc25May.html
1856
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test015.rdf
1857
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1858
+ name: test015
1859
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test015.nt
1860
+ rdf_type: PositiveParserTest
1861
+ status: APPROVED
1862
+ - !ruby/object:RdfHelper::TestCase
1863
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test015.rdf
1864
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1865
+ description: "\n\
1866
+ This test case is deprecated. The use of mailto: URIs with xml:base is not within the scope of\n\
1867
+ RDFCore's charter to sort out.\n "
1868
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test015.rdf
1869
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1870
+ name: test015
1871
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test015.nt
1872
+ rdf_type: PositiveParserTest
1873
+ status: NOT_APPROVED
1874
+ - !ruby/object:RdfHelper::TestCase
1875
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test016.rdf
1876
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1877
+ description: "\n\
1878
+ Like rdfms-empty-property-elements/test001.rdf but with a processing instruction \n\
1879
+ as the only content of the otherwise empty element.\n "
1880
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test016.rdf
1881
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1882
+ name: test016
1883
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test016.nt
1884
+ rdf_type: PositiveParserTest
1885
+ status: APPROVED
1886
+ - !ruby/object:RdfHelper::TestCase
1887
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/xmlbase/test016.rdf
1888
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Mar/0235.html
1889
+ description: "\n\
1890
+ This test case is deprecated. The use of mailto: URIs with xml:base is not within the scope of\n\
1891
+ RDFCore's charter to sort out.\n "
1892
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test016.rdf
1893
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-xml-base
1894
+ name: test016
1895
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/xmlbase/test016.nt
1896
+ rdf_type: PositiveParserTest
1897
+ status: NOT_APPROVED
1898
+ - !ruby/object:RdfHelper::TestCase
1899
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-empty-property-elements/test017.rdf
1900
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1901
+ description: "\n\
1902
+ Like rdfms-empty-property-elements/test001.rdf but with a comment\n\
1903
+ as the only content of the otherwise empty element.\n "
1904
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test017.rdf
1905
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-empty-property-elements
1906
+ name: test017
1907
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-empty-property-elements/test017.nt
1908
+ rdf_type: PositiveParserTest
1909
+ status: APPROVED
1910
+ - !ruby/object:RdfHelper::TestCase
1911
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf
1912
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Dec/0108.html
1913
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf
1914
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-difference-between-ID-and-about
1915
+ name: test1
1916
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.nt
1917
+ rdf_type: PositiveParserTest
1918
+ status: APPROVED
1919
+ - !ruby/object:RdfHelper::TestCase
1920
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf
1921
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1922
+ description: "\n\
1923
+ \tThis test shows the treatment of non-ASCII characters\n in the value of rdf:ID attribute.\n "
1924
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf
1925
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-difference-between-ID-and-about
1926
+ name: test2
1927
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.nt
1928
+ rdf_type: PositiveParserTest
1929
+ status: APPROVED
1930
+ - !ruby/object:RdfHelper::TestCase
1931
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf
1932
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2003Jan/0025.html
1933
+ description: "\n\
1934
+ \tThis test shows the treatment of non-ASCII characters\n in the value of rdf:about attribute.\n "
1935
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf
1936
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-difference-between-ID-and-about
1937
+ name: test3
1938
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.nt
1939
+ rdf_type: PositiveParserTest
1940
+ status: APPROVED
1941
+ - !ruby/object:RdfHelper::TestCase
1942
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/warn-001.rdf
1943
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
1944
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-001.rdf
1945
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
1946
+ name: warn-001
1947
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-001.nt
1948
+ rdf_type: PositiveParserTest
1949
+ status: APPROVED
1950
+ warning: " allowed with warnings "
1951
+ - !ruby/object:RdfHelper::TestCase
1952
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/warn-002.rdf
1953
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
1954
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-002.rdf
1955
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
1956
+ name: warn-002
1957
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-002.nt
1958
+ rdf_type: PositiveParserTest
1959
+ status: APPROVED
1960
+ warning: " allowed with warnings "
1961
+ - !ruby/object:RdfHelper::TestCase
1962
+ about: http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-rdf-names-use/warn-003.rdf
1963
+ approval: http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0651.html
1964
+ inputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-003.rdf
1965
+ issue: http://www.w3.org/2000/03/rdf-tracking/#rdfms-rdf-names-use
1966
+ name: warn-003
1967
+ outputDocument: /Users/gregg/Projects/rdf-rdfxml/spec/rdfcore/rdfms-rdf-names-use/warn-003.nt
1968
+ rdf_type: PositiveParserTest
1969
+ status: APPROVED
1970
+ warning: " allowed with warnings "