@@ -30,7 +30,7 @@ describe("n3.get", function() {
3030 } ) ;
3131 } ) ;
3232
33- it . skip ( "should convert 'rdf-type' to 'a'" , function ( done ) {
33+ it ( "should convert 'rdf-type' to 'a'" , function ( done ) {
3434 db . put ( {
3535 subject : "http://example.org/cartoons#tom"
3636 , predicate : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
@@ -46,7 +46,7 @@ describe("n3.get", function() {
4646 } ) ;
4747 } ) ;
4848
49- it . skip ( "should convert two triples into N3, reusing the subject" , function ( done ) {
49+ it ( "should convert two triples into N3, reusing the subject" , function ( done ) {
5050 db . put ( [ {
5151 subject : "http://example.org/cartoons#Tom"
5252 , predicate : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
@@ -60,8 +60,8 @@ describe("n3.get", function() {
6060 subject : "http://example.org/cartoons#Tom"
6161 } , function ( err , triples ) {
6262 var expected = "" +
63- "<http://example.org/cartoons#Tom> <http://example.org/cartoons#dumberThan> <http://example.org/cartoons#Jerry> ;\n" +
64- " a <http://example.org/cartoons#cat> .\n" ;
63+ "<http://example.org/cartoons#Tom> <http://example.org/cartoons#dumberThan> <http://example.org/cartoons#Jerry>;\n" +
64+ " a <http://example.org/cartoons#cat>.\n" ;
6565 expect ( triples ) . to . eql ( expected ) ;
6666 done ( ) ;
6767 } ) ;
0 commit comments