Skip to content
This repository has been archived by the owner on Dec 21, 2017. It is now read-only.

Commit

Permalink
Remove pending events for RDFa parser test.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 16, 2010
1 parent e871a2b commit 556ba71
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions spec/rdfa_parser_spec.rb
Expand Up @@ -232,12 +232,6 @@ def self.test_cases(suite)
t.run_test do |rdfa_string, rdfa_parser| t.run_test do |rdfa_string, rdfa_parser|
rdfa_parser.parse(rdfa_string, t.informationResourceInput, :debug => [], :version => t.version) rdfa_parser.parse(rdfa_string, t.informationResourceInput, :debug => [], :version => t.version)
end end
rescue RSpec::Expectations::ExpectationNotMetError => e
if t.input =~ /XMLLiteral/
pending("XMLLiteral canonicalization not implemented yet")
else
raise
end
rescue SparqlException => e rescue SparqlException => e
pending(e.message) { raise } pending(e.message) { raise }
end end
Expand Down Expand Up @@ -281,11 +275,7 @@ def self.test_cases(suite)
rescue SparqlException => e rescue SparqlException => e
pending(e.message) { raise } pending(e.message) { raise }
rescue RSpec::Expectations::ExpectationNotMetError => e rescue RSpec::Expectations::ExpectationNotMetError => e
if t.name =~ /01[789]\d/ pending() { raise }
raise
else
pending() { raise }
end
end end
end end
end end
Expand Down

0 comments on commit 556ba71

Please sign in to comment.