diff --git a/tests/feeds_test.info b/tests/feeds_test.info deleted file mode 100644 index 58455a751f62ef47f5b949eb537179934d807c7b..0000000000000000000000000000000000000000 --- a/tests/feeds_test.info +++ /dev/null @@ -1,7 +0,0 @@ -; $Id$ -name = "Feeds tests" -description = "Test module for Feeds." -package = Testing -version = VERSION -core = 6.x -; hidden = TRUE \ No newline at end of file diff --git a/tests/feeds_test.module b/tests/feeds_test.module deleted file mode 100644 index 3cbcb09c6c06cb9c1c4af2b17bea45caa161ea73..0000000000000000000000000000000000000000 --- a/tests/feeds_test.module +++ /dev/null @@ -1,45 +0,0 @@ -<?php -// $Id$ - -/** - * @file - * Test module for Feeds. - */ - -/** - * Implementation of hook_menu(). - */ -function feeds_test_menu() { - $items = array(); - $items['opml-test-feed'] = array( - 'page callback' => 'feeds_test_opml_feed', - 'access arguments' => array('access content'), - ); - return $items; -} - -/** - * Render an OPML feed pointing to local feeds. - */ -function feeds_test_opml_feed() { - $path = dirname($GLOBALS['_SERVER']['SCRIPT_FILENAME']) .'/'. drupal_get_path('module', 'feeds') .'/tests/feeds/'; - - drupal_set_header('Content-Type: application/rss+xml; charset=utf-8'); - $output = -'<?xml version="1.0" encoding="utf-8"?> -<opml version="1.1"> -<head> - <title>Feeds test OPML</title> - <dateCreated>Fri, 16 Oct 2009 02:53:17 GMT</dateCreated> - <ownerName></ownerName> -</head> -<body> - <outline text="Feeds test group" > - <outline title="Development Seed - Technological Solutions for Progressive Organizations" text="" xmlUrl="'. $path .'developmentseed.rss2" type="rss" /> - <outline title="Magyar Nemzet Online - H’rek" text="" xmlUrl="'. $path .'feed_without_guid.rss2" type="rss" /> - <outline title="Drupal planet" text="" type="rss" xmlUrl="'. $path .'drupalplanet.rss2" /> - </outline> -</body> -</opml>'; - print $output; -} \ No newline at end of file