Created
January 26, 2012 18:45
-
-
Save jcoyne/1684310 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) ActiveFedora::RDFXMLWriter should serialize graphs using the rdf:Description element despite the presence of rdf:type statements | |
Failure/Error: content.should be_equivalent_to @rdf_xml_with_type | |
expected: | |
<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> | |
<rdf:Description rdf:about='info:fedora/test:sample_pid'> | |
<isMemberOf rdf:resource='demo:10' xmlns='info:fedora/fedora-system:def/relations-external#'/> | |
<type rdf:resource='http://purl.org/dc/dcmitype/Collection' xmlns='http://www.w3.org/1999/02/22-rdf-syntax-ns#' /> | |
</rdf:Description> | |
</rdf:RDF> | |
got: | |
<?xml version="1.0" encoding="UTF-8"?> | |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ns1="info:fedora/fedora-system:def/relations-external#" xmlns:ns0="http://purl.org/dc/dcmitype/"> | |
<ns0:Collection rdf:about="info:fedora/test:sample_pid"> | |
<ns1:isMemberOf rdf:resource="demo:10"/> | |
</ns0:Collection> | |
</rdf:RDF> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment