From 2d212bac8e69bbd473fdf18bf6dd682cbc149306 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Nov 2018 15:38:48 +0100 Subject: Remove some unnecessary test files --- tests/good/manifest.nt | 8 --- tests/good/manifest.ttl | 12 ---- tests/good/rdf-schema.nt | 126 --------------------------------- tests/good/rdf-schema.ttl | 156 ---------------------------------------- tests/good/rdfs-namespace.nt | 131 ---------------------------------- tests/good/rdfs-namespace.ttl | 160 ------------------------------------------ 6 files changed, 593 deletions(-) delete mode 100644 tests/good/rdf-schema.nt delete mode 100644 tests/good/rdf-schema.ttl delete mode 100644 tests/good/rdfs-namespace.nt delete mode 100644 tests/good/rdfs-namespace.ttl diff --git a/tests/good/manifest.nt b/tests/good/manifest.nt index c15d6440..8d4dc7fd 100644 --- a/tests/good/manifest.nt +++ b/tests/good/manifest.nt @@ -104,14 +104,6 @@ _:b46 "manifest" . . . - . - "rdf-schema" . - . - . - . - "rdfs-namespace" . - . - . . "test-14" . . diff --git a/tests/good/manifest.ttl b/tests/good/manifest.ttl index 15897f9d..1f3e2c69 100644 --- a/tests/good/manifest.ttl +++ b/tests/good/manifest.ttl @@ -72,18 +72,6 @@ mf:action ; mf:result . -<#rdf-schema> - rdf:type rdft:TestTurtleEval ; - mf:name "rdf-schema" ; - mf:action ; - mf:result . - -<#rdfs-namespace> - rdf:type rdft:TestTurtleEval ; - mf:name "rdfs-namespace" ; - mf:action ; - mf:result . - <#test-14> rdf:type rdft:TestTurtleEval ; mf:name "test-14" ; diff --git a/tests/good/rdf-schema.nt b/tests/good/rdf-schema.nt deleted file mode 100644 index 94e14045..00000000 --- a/tests/good/rdf-schema.nt +++ /dev/null @@ -1,126 +0,0 @@ - . - "Indicates membership of a class" . - "type"@en . - "type"@fr . - . - . - "The concept of Class" . - "Class"@en . - "Classe"@fr . - . - . - "Properties used to express RDF Schema constraints." . - "ConstraintProperty"@en . - "Propri\u00E9t\u00E9Contrainte"@fr . - . - . - . - . - "Resources used to express RDF Schema constraints." . - "ConstraintResource"@en . - "RessourceContrainte"@fr . - . - . - "This represents the set Containers." . - "Container"@en . - "Enveloppe"@fr . - . - . - "ContainerMembershipProperty"@en . - . - . - . - "This represents the set of atomic values, eg. textual strings." . - "Literal"@en . - "Litt\u00E9ral"@fr . - . - "The most general class" . - "Resource"@en . - "Ressource"@fr . - . - "Use this for descriptions" . - . - "comment"@en . - "commentaire"@fr . - . - . - "This is how we associate a class with properties that its instances can have" . - "domain"@en . - "domaine"@fr . - . - "Indicates a resource containing and defining the subject resource." . - . - "esD\u00E9finiPar"@fr . - "isDefinedBy"@en . - . - . - . - "Provides a human-readable version of a resource name." . - . - "label"@en . - "label"@fr . - . - . - "Properties that can be used in a schema to provide constraints" . - . - "range"@en . - "\u00E9tendue"@fr . - . - . - "Indicates a resource that provides information about the subject resource." . - . - "seeAlso"@en . - "voirAussi"@fr . - . - . - "Indicates membership of a class" . - . - "sousClasseDe"@fr . - "subClassOf"@en . - . - . - "Indicates specialization of properties" . - . - "sousPropri\u00E9t\u00E9De"@fr . - "subPropertyOf"@en . - . - . - "Alt"@en . - "Choix"@fr . - . - . - "Bag"@en . - "Ensemble"@fr . - . - . - "The concept of a property." . - "Property"@en . - "Propri\u00E9t\u00E9"@fr . - . - . - "Sequence"@en . - "S\u00E9quence"@fr . - . - . - "This represents the set of reified statements." . - "D\u00E9claration"@fr . - "Statement"@en . - . - . - . - "object"@en . - "objet"@fr . - . - . - "predicate"@en . - "pr\u00E9dicat"@fr . - . - . - . - "subject"@en . - "sujet"@fr . - . - . - "object"@en . - "value"@fr . - . diff --git a/tests/good/rdf-schema.ttl b/tests/good/rdf-schema.ttl deleted file mode 100644 index 8a61794e..00000000 --- a/tests/good/rdf-schema.ttl +++ /dev/null @@ -1,156 +0,0 @@ -# RDF Namespace document converted into Turtle - -@prefix : . -@prefix rdf: . - -rdf:type a rdf:Property; - :comment "Indicates membership of a class"; - :label "type"@en, - "type"@fr; - :range :Class . - -:Class a :Class; - :comment "The concept of Class"; - :label "Class"@en, - "Classe"@fr; - :subClassOf :Resource . - -:ConstraintProperty a :Class; - :comment "Properties used to express RDF Schema constraints."; - :label "ConstraintProperty"@en, - "Propri\u00E9t\u00E9Contrainte"@fr; - :subClassOf :ConstraintResource, - rdf:Property . - -:ConstraintResource a :Class, - :Class; - :comment "Resources used to express RDF Schema constraints."; - :label "ConstraintResource"@en, - "RessourceContrainte"@fr; - :subClassOf :Resource . - -:Container a :Class; - :comment "This represents the set Containers."; - :label "Container"@en, - "Enveloppe"@fr; - :subClassOf :Resource . - -:ContainerMembershipProperty a :Class; - :label "ContainerMembershipProperty"@en; - :subClassOf rdf:Property . - -:Literal a :Class, - :Class; - :comment "This represents the set of atomic values, eg. textual strings."; - :label "Literal"@en, - "Litt\u00E9ral"@fr . - -:Resource a :Class; - :comment "The most general class"; - :label "Resource"@en, - "Ressource"@fr . - -:comment a rdf:Property; - :comment "Use this for descriptions"; - :domain :Resource; - :label "comment"@en, - "commentaire"@fr; - :range :Literal . - -:domain a :ConstraintProperty; - :comment "This is how we associate a class with properties that its instances can have"; - :label "domain"@en, - "domaine"@fr . - -:isDefinedBy a rdf:Property; - :comment "Indicates a resource containing and defining the subject resource."; - :domain :Resource; - :label "esD\u00E9finiPar"@fr, - "isDefinedBy"@en; - :range :Resource; - :subPropertyOf :seeAlso . - -:label a rdf:Property; - :comment "Provides a human-readable version of a resource name."; - :domain :Resource; - :label "label"@en, - "label"@fr; - :range :Literal . - -:range a :ConstraintProperty; - :comment "Properties that can be used in a schema to provide constraints"; - :domain rdf:Property; - :label "range"@en, - "\u00E9tendue"@fr; - :range :Class . - -:seeAlso a rdf:Property; - :comment "Indicates a resource that provides information about the subject resource."; - :domain :Resource; - :label "seeAlso"@en, - "voirAussi"@fr; - :range :Resource . - -:subClassOf a rdf:Property; - :comment "Indicates membership of a class"; - :domain :Class; - :label "sousClasseDe"@fr, - "subClassOf"@en; - :range :Class . - -:subPropertyOf a rdf:Property; - :comment "Indicates specialization of properties"; - :domain rdf:Property; - :label "sousPropri\u00E9t\u00E9De"@fr, - "subPropertyOf"@en; - :range rdf:Property . - -rdf:Alt a :Class; - :label "Alt"@en, - "Choix"@fr; - :subClassOf :Container . - -rdf:Bag a :Class; - :label "Bag"@en, - "Ensemble"@fr; - :subClassOf :Container . - -rdf:Property a :Class; - :comment "The concept of a property."; - :label "Property"@en, - "Propri\u00E9t\u00E9"@fr; - :subClassOf :Resource . - -rdf:Seq a :Class; - :label "Sequence"@en, - "S\u00E9quence"@fr; - :subClassOf :Container . - -rdf:Statement a :Class; - :comment "This represents the set of reified statements."; - :label "D\u00E9claration"@fr, - "Statement"@en; - :subClassOf :Resource . - -rdf:object a rdf:Property; - :domain rdf:Statement; - :label "object"@en, - "objet"@fr . - -rdf:predicate a rdf:Property; - :domain rdf:Statement; - :label "predicate"@en, - "pr\u00E9dicat"@fr; - :range rdf:Property . - -rdf:subject a rdf:Property; - :domain rdf:Statement; - :label "subject"@en, - "sujet"@fr; - :range :Resource . - -rdf:value a rdf:Property; - :label "object"@en, - "value"@fr . - -: :seeAlso . diff --git a/tests/good/rdfs-namespace.nt b/tests/good/rdfs-namespace.nt deleted file mode 100644 index 4696f8cf..00000000 --- a/tests/good/rdfs-namespace.nt +++ /dev/null @@ -1,131 +0,0 @@ - . - "Indicates membership of a class" . - . - . - "type"@en . - . - . - "A collection of alternatives."@en . - . - "Alt"@en . - . - . - "An unordered collection."@en . - . - "Bag"@en . - . - . - "The concept of a property." . - . - "Property"@en . - . - . - "An ordered collection."@en . - . - "Seq"@en . - . - . - "The class of RDF statements." . - . - "Statement"@en . - . - . - "The object of an RDF statement." . - . - . - "object"@en . - . - "the predicate of an RDF statement." . - . - . - "predicate"@en . - . - . - "The subject of an RDF statement." . - . - . - "subject"@en . - . - . - "Identifies the principal value (usually a string) of a property when the property value is a structured resource" . - . - . - "value"@en . - . - . - "The concept of Class" . - . - "Class"@en . - . - . - "This represents the set Containers." . - . - "Container"@en . - . - . - "The container membership properties, rdf:1, rdf:2, ..., all of which are sub-properties of 'member'." . - . - "ContainerMembershipProperty"@en . - . - . - "This represents the set of atomic values, eg. textual strings." . - . - "Literal"@en . - . - "The class resource, everything." . - . - "Resource"@en . - . - "Use this for descriptions" . - . - . - "comment"@en . - . - . - "A domain class for a property type" . - . - . - "domain"@en . - . - . - "Indicates the namespace of a resource" . - . - . - "isDefinedBy"@en . - . - . - . - "Provides a human-readable version of a resource name." . - . - . - "label"@en . - . - . - "a member of a container" . - . - . - "member"@en . - . - "A range class for a property type" . - . - . - "range"@en . - . - . - "A resource that provides information about the subject resource" . - . - . - "seeAlso"@en . - . - . - "Indicates membership of a class" . - . - . - "subClassOf"@en . - . - . - "Indicates specialization of properties" . - . - . - "subPropertyOf"@en . - . diff --git a/tests/good/rdfs-namespace.ttl b/tests/good/rdfs-namespace.ttl deleted file mode 100644 index 0d73e6bf..00000000 --- a/tests/good/rdfs-namespace.ttl +++ /dev/null @@ -1,160 +0,0 @@ -# RDFS Namespace document converted into Turtle - -@prefix : . -@prefix rdf: . - -rdf:type a rdf:Property; - :comment "Indicates membership of a class"; - :domain :Resource; - :isDefinedBy rdf:; - :label "type"@en; - :range :Class . - -rdf:Alt a :Class; - :comment "A collection of alternatives."@en; - :isDefinedBy rdf:; - :label "Alt"@en; - :subClassOf :Container . - -rdf:Bag a :Class; - :comment "An unordered collection."@en; - :isDefinedBy rdf:; - :label "Bag"@en; - :subClassOf :Container . - -rdf:Property a :Class; - :comment "The concept of a property."; - :isDefinedBy rdf:; - :label "Property"@en; - :subClassOf :Resource . - -rdf:Seq a :Class; - :comment "An ordered collection."@en; - :isDefinedBy rdf:; - :label "Seq"@en; - :subClassOf :Container . - -rdf:Statement a :Class; - :comment "The class of RDF statements."; - :isDefinedBy rdf:; - :label "Statement"@en; - :subClassOf :Resource . - -rdf:object a rdf:Property; - :comment "The object of an RDF statement."; - :domain rdf:Statement; - :isDefinedBy rdf:; - :label "object"@en . - -rdf:predicate a rdf:Property; - :comment "the predicate of an RDF statement."; - :domain rdf:Statement; - :isDefinedBy rdf:; - :label "predicate"@en; - :range rdf:Property . - -rdf:subject a rdf:Property; - :comment "The subject of an RDF statement."; - :domain rdf:Statement; - :isDefinedBy rdf:; - :label "subject"@en; - :range :Resource . - -rdf:value a rdf:Property; - :comment "Identifies the principal value (usually a string) of a property when the property value is a structured resource"; - :domain :Resource; - :isDefinedBy rdf:; - :label "value"@en . - -: :seeAlso . - -:Class a :Class; - :comment "The concept of Class"; - :isDefinedBy :; - :label "Class"@en; - :subClassOf :Resource . - -:Container a :Class; - :comment "This represents the set Containers."; - :isDefinedBy :; - :label "Container"@en; - :subClassOf :Resource . - -:ContainerMembershipProperty a :Class; - :comment "The container membership properties, rdf:1, rdf:2, ..., all of which are sub-properties of 'member'."; - :isDefinedBy :; - :label "ContainerMembershipProperty"@en; - :subClassOf rdf:Property . - -:Literal a :Class; - :comment "This represents the set of atomic values, eg. textual strings."; - :isDefinedBy :; - :label "Literal"@en . - -:Resource a :Class; - :comment "The class resource, everything."; - :isDefinedBy :; - :label "Resource"@en . - -:comment a rdf:Property; - :comment "Use this for descriptions"; - :domain :Resource; - :isDefinedBy :; - :label "comment"@en; - :range :Literal . - -:domain a rdf:Property; - :comment "A domain class for a property type"; - :domain rdf:Property; - :isDefinedBy :; - :label "domain"@en; - :range :Class . - -:isDefinedBy a rdf:Property; - :comment "Indicates the namespace of a resource"; - :domain :Resource; - :isDefinedBy :; - :label "isDefinedBy"@en; - :range :Resource; - :subPropertyOf :seeAlso . - -:label a rdf:Property; - :comment "Provides a human-readable version of a resource name."; - :domain :Resource; - :isDefinedBy :; - :label "label"@en; - :range :Literal . - -:member a rdf:Property; - :comment "a member of a container"; - :domain :Container; - :isDefinedBy :; - :label "member"@en . - -:range a rdf:Property; - :comment "A range class for a property type"; - :domain rdf:Property; - :isDefinedBy :; - :label "range"@en; - :range :Class . - -:seeAlso a rdf:Property; - :comment "A resource that provides information about the subject resource"; - :domain :Resource; - :isDefinedBy :; - :label "seeAlso"@en; - :range :Resource . - -:subClassOf a rdf:Property; - :comment "Indicates membership of a class"; - :domain :Class; - :isDefinedBy :; - :label "subClassOf"@en; - :range :Class . - -:subPropertyOf a rdf:Property; - :comment "Indicates specialization of properties"; - :domain rdf:Property; - :isDefinedBy :; - :label "subPropertyOf"@en; - :range rdf:Property . -- cgit v1.2.1