summaryrefslogtreecommitdiffstatshomepage
path: root/modules/rdf/tests/rdf_test.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/rdf/tests/rdf_test.module')
-rw-r--r--modules/rdf/tests/rdf_test.module59
1 files changed, 0 insertions, 59 deletions
diff --git a/modules/rdf/tests/rdf_test.module b/modules/rdf/tests/rdf_test.module
deleted file mode 100644
index 4ad43f31e50..00000000000
--- a/modules/rdf/tests/rdf_test.module
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-
-/**
- * @file
- * Test API interaction with the RDF module.
- */
-
-/**
- * Implements hook_rdf_mapping().
- */
-function rdf_test_rdf_mapping() {
- return array(
- array(
- 'type' => 'test_entity',
- 'bundle' => 'test_bundle',
- 'mapping' => array(
- 'rdftype' => array('sioc:Post'),
- 'title' => array(
- 'predicates' => array('dc:title'),
- ),
- 'created' => array(
- 'predicates' => array('dc:created'),
- 'datatype' => 'xsd:dateTime',
- 'callback' => 'date_iso8601',
- ),
- 'uid' => array(
- 'predicates' => array('sioc:has_creator', 'dc:creator'),
- 'type' => 'rel',
- ),
- 'foobar' => array(
- 'predicates' => array('foo:bar'),
- ),
- 'foobar1' => array(
- 'datatype' => 'foo:bar1type',
- 'predicates' => array('foo:bar1'),
- ),
- 'foobar_objproperty1' => array(
- 'predicates' => array('sioc:has_creator', 'dc:creator'),
- 'type' => 'rel',
- ),
- 'foobar_objproperty2' => array(
- 'predicates' => array('sioc:reply_of'),
- 'type' => 'rev',
- ),
- ),
- ),
- );
-}
-
-/**
- * Implements hook_rdf_namespaces().
- */
-function rdf_test_rdf_namespaces() {
- return array(
- 'dc' => 'http://purl.org/conflicting/namespace',
- 'foaf' => 'http://xmlns.com/foaf/0.1/',
- 'foaf1' => 'http://xmlns.com/foaf/0.1/',
- );
-}