Author: earle Date: 2005-11-29 07:07:03 +0000 (Tue, 29 Nov 2005) New Revision: 719
Modified: trunk/t/21_rdf.t Log: fix whitespace
Modified: trunk/t/21_rdf.t =================================================================== --- trunk/t/21_rdf.t 2005-11-29 06:22:42 UTC (rev 718) +++ trunk/t/21_rdf.t 2005-11-29 07:07:03 UTC (rev 719) @@ -16,16 +16,16 @@
CGI::Wiki::Setup::SQLite::setup( { dbname => "t/node.db" } ); my $config = OpenGuides::Config->new( - vars => { - dbtype => "sqlite", - dbname => "t/node.db", - indexing_directory => "t/indexes", - script_url => "http://wiki.example.com/", - script_name => "mywiki.cgi", - site_name => "CGI::Wiki Test Site", - default_city => "London", - default_country => "United Kingdom", - } + vars => { + dbtype => "sqlite", + dbname => "t/node.db", + indexing_directory => "t/indexes", + script_url => "http://wiki.example.com/", + script_name => "mywiki.cgi", + site_name => "CGI::Wiki Test Site", + default_city => "London", + default_country => "United Kingdom", + } ); eval { require CGI::Wiki::Search::Plucene; }; if ( $@ ) { $config->use_plucene ( 0 ) }; @@ -46,20 +46,20 @@
# Test the data for a node that exists. $wiki->write_node( "Calthorpe Arms", - "CAMRA-approved pub near King's Cross", - undef, - { - comment => "Stub page, please update!", - username => "Kake", - postcode => "WC1X 8JR", - locale => [ "Bloomsbury", "St Pancras" ], - phone => "test phone number", - website => "test website", - opening_hours_text => "test hours", - latitude => "51.524193", - longitude => "-0.114436", - summary => "a nice pub", - } + "CAMRA-approved pub near King's Cross", + undef, + { + comment => "Stub page, please update!", + username => "Kake", + postcode => "WC1X 8JR", + locale => [ "Bloomsbury", "St Pancras" ], + phone => "test phone number", + website => "test website", + opening_hours_text => "test hours", + latitude => "51.524193", + longitude => "-0.114436", + summary => "a nice pub", + } );
my $rdfxml = $rdf_writer->emit_rdfxml( node => "Calthorpe Arms" ); @@ -67,24 +67,24 @@ like( $rdfxml, qr|<?xml version="1.0"?>|, "RDF is encoding-neutral" );
like( $rdfxml, qr|foaf:nameBloomsbury</foaf:name>|, - "finds the first locale" ); + "finds the first locale" ); like( $rdfxml, qr|foaf:nameSt Pancras</foaf:name>|, "finds the second locale" );
like( $rdfxml, qr|<phone>test phone number</phone>|, - "picks up phone number" ); + "picks up phone number" );
like( $rdfxml, qr|chefmoz:Hourstest hours</chefmoz:Hours>|, - "picks up opening hours text" ); + "picks up opening hours text" );
like( $rdfxml, qr|<foaf:homepage rdf:resource="test website" />|, "picks up website" );
like( $rdfxml, - qr|dc:titleCGI::Wiki Test Site: Calthorpe Arms</dc:title>|, - "sets the title correctly" ); + qr|dc:titleCGI::Wiki Test Site: Calthorpe Arms</dc:title>|, + "sets the title correctly" );
like( $rdfxml, qr|dc:contributorKake</dc:contributor>|, - "last username to edit used as contributor" ); + "last username to edit used as contributor" );
like( $rdfxml, qr|wiki:version1</wiki:version>|, "version picked up" );
@@ -92,7 +92,7 @@ "sets the 'about' correctly" );
like( $rdfxml, qr|<dc:source rdf:resource="http://wiki.example.com/mywiki.cgi%5C?Calthorpe_Arms" />|, - "set the dc:source with the version-independent uri" ); + "set the dc:source with the version-independent uri" );
like( $rdfxml, qr|<country>United Kingdom</country>|, "country" ). like( $rdfxml, qr|<city>London</city>|, "city" ). @@ -130,17 +130,17 @@
# Test the data for a node that redirects. $wiki->write_node( "Calthorpe Arms Pub", - "#REDIRECT [[Calthorpe Arms]]", - undef, - { - comment => "Created as redirect to Calthorpe Arms page.", - username => "Earle", - } + "#REDIRECT [[Calthorpe Arms]]", + undef, + { + comment => "Created as redirect to Calthorpe Arms page.", + username => "Earle", + } );
my $redirect_rdf = $rdf_writer->emit_rdfxml( node => "Calthorpe Arms Pub" );
like( $redirect_rdf, qr|<owl:sameAs rdf:resource="/?id=Calthorpe_Arms;format=rdf#obj" />|, - "redirecting node gets owl:sameAs to target" ); + "redirecting node gets owl:sameAs to target" );
}
openguides-commits@lists.openguides.org