diff options
author | David Robillard <d@drobilla.net> | 2011-01-25 21:00:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-25 21:00:49 +0000 |
commit | 204428cdeed5653c876c9580c0a2589b5427e6ae (patch) | |
tree | a4460cc8cfb1fb21635d785def225f8d94357f9e | |
parent | 8a2478b3efc695f453fc71d936dbd50725e2359a (diff) | |
download | serd-204428cdeed5653c876c9580c0a2589b5427e6ae.tar.gz serd-204428cdeed5653c876c9580c0a2589b5427e6ae.tar.bz2 serd-204428cdeed5653c876c9580c0a2589b5427e6ae.zip |
Remove unused test file.
git-svn-id: http://svn.drobilla.net/serd/trunk@77 490d8e77-9747-427b-9fa3-0b8f29cee8a0
-rw-r--r-- | test.nt | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/test.nt b/test.nt deleted file mode 100644 index 3e528814..00000000 --- a/test.nt +++ /dev/null @@ -1,78 +0,0 @@ -# -# Copyright World Wide Web Consortium, (Massachusetts Institute of -# Technology, Institut National de Recherche en Informatique et en -# Automatique, Keio University). -# -# All Rights Reserved. -# -# Please see the full Copyright clause at -# <http://www.w3.org/Consortium/Legal/copyright-software.html> -# -# Test file with a variety of legal N-Triples -# -# Dave Beckett - http://purl.org/net/dajobe/ -# -# $Id: test.nt,v 1.7 2003/10/06 15:52:19 dbeckett2 Exp $ -# -##################################################################### - -# comment lines - # comment line after whitespace -# empty blank line, then one with spaces and tabs - - -<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> . -_:anon <http://example.org/property> <http://example.org/resource2> . -<http://example.org/resource2> <http://example.org/property> _:anon . -# spaces and tabs throughout: - <http://example.org/resource3> <http://example.org/property> <http://example.org/resource2> . - -# line ending with CR NL (ASCII 13, ASCII 10) -<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> .
- -# 2 statement lines separated by single CR (ASCII 10) -<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> .
<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> . - - -# All literal escapes -<http://example.org/resource7> <http://example.org/property> "simple literal" . -<http://example.org/resource8> <http://example.org/property> "backslash:\\" . -<http://example.org/resource9> <http://example.org/property> "dquote:\"" . -<http://example.org/resource10> <http://example.org/property> "newline:\n" . -<http://example.org/resource11> <http://example.org/property> "return\r" . -<http://example.org/resource12> <http://example.org/property> "tab:\t" . - -# Space is optional before final . -<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2>. -<http://example.org/resource14> <http://example.org/property> "x". -<http://example.org/resource15> <http://example.org/property> _:anon. - -# \u and \U escapes -# latin small letter e with acute symbol \u00E9 - 3 UTF-8 bytes #xC3 #A9 -<http://example.org/resource16> <http://example.org/property> "\u00E9" . -# Euro symbol \u20ac - 3 UTF-8 bytes #xE2 #x82 #xAC -<http://example.org/resource17> <http://example.org/property> "\u20AC" . -# resource18 test removed -# resource19 test removed -# resource20 test removed - -# XML Literals as Datatyped Literals -<http://example.org/resource21> <http://example.org/property> ""^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource22> <http://example.org/property> " "^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource23> <http://example.org/property> "x"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource23> <http://example.org/property> "\""^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource24> <http://example.org/property> "<a></a>"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource25> <http://example.org/property> "a <b></b>"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource26> <http://example.org/property> "a <b></b> c"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource26> <http://example.org/property> "a\n<b></b>\nc"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -<http://example.org/resource27> <http://example.org/property> "chat"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> . -# resource28 test removed 2003-08-03 -# resource29 test removed 2003-08-03 - -# Plain literals with languages -<http://example.org/resource30> <http://example.org/property> "chat"@fr . -<http://example.org/resource31> <http://example.org/property> "chat"@en . - -# Typed Literals -<http://example.org/resource32> <http://example.org/property> "abc"^^<http://example.org/datatype1> . -# resource33 test removed 2003-08-03 |