diff --git a/src/freeseer/tests/plugins/importer/rss_feedparser/testpresentations.json b/src/freeseer/tests/plugins/importer/rss_feedparser/presentation_feed.json similarity index 96% rename from src/freeseer/tests/plugins/importer/rss_feedparser/testpresentations.json rename to src/freeseer/tests/plugins/importer/rss_feedparser/presentation_feed.json index 09d45595..93f4278b 100644 --- a/src/freeseer/tests/plugins/importer/rss_feedparser/testpresentations.json +++ b/src/freeseer/tests/plugins/importer/rss_feedparser/presentation_feed.json @@ -163,7 +163,7 @@ { "Title" : "Open Source Industrial Grade Search Engine Technologies", "Speaker" : "Shahzad Khan", - "Abstract" : "This talk discusses techniques for supercharging your Web 2.0 startup via open-source search technologies. \nThe more data you have available today, the more you can confuse, befuddle and disturb your user.... unless you have a mature information search strategy.\nIn this talk, we discuss enterprise-ready Open-Source technologies available. These can help you to", + "Abstract" : "This talk discusses techniques for supercharging your Web 2.0 startup via open-source search technologies. \nThe more data you have available today, the more you can confuse, befuddle and disturb your user.... unless you have a mature information search strategy.\nIn this talk, we discuss enterprise-ready Open-Source technologies available. These can help you to\n* Enhance your user's experience on your web site.\n* Easily find information in your enterprise repositories\n* Strengthen partnerships by making it easy for external partners to work with your information resources\n* Drive more traffic to your site via SEO-friendly search strategies\nContent Covered:\n * The Search Stack\n- Getting Data: Web Crawlers + RSS/ATOM\n- Getting Data: Document Adapters\n- Information Extraction\n- Indexing\n- Querying\n* Different Search Scenarios\n- Web Search\n- Enterprise Search\n- Extranet Search\n* Crash Course: Deploying Search using SOLR\n* Advanced: SEO-friendly Search Strategies", "Level" : "Intermediate", "Status" : "Approved", "Time" : null, diff --git a/src/freeseer/tests/plugins/importer/rss_feedparser/testrss.rss b/src/freeseer/tests/plugins/importer/rss_feedparser/presentation_feed.rss similarity index 100% rename from src/freeseer/tests/plugins/importer/rss_feedparser/testrss.rss rename to src/freeseer/tests/plugins/importer/rss_feedparser/presentation_feed.rss diff --git a/src/freeseer/tests/plugins/importer/rss_feedparser/test_rss_feedparser.py b/src/freeseer/tests/plugins/importer/rss_feedparser/test_rss_feedparser.py index 92cd2dcd..5d9f6e2e 100644 --- a/src/freeseer/tests/plugins/importer/rss_feedparser/test_rss_feedparser.py +++ b/src/freeseer/tests/plugins/importer/rss_feedparser/test_rss_feedparser.py @@ -35,11 +35,11 @@ class TestFeedParser(unittest.TestCase): maxDiff = None def setUp(self): - rss_file = os.path.join(os.path.dirname(__file__), 'testrss.rss') + rss_file = os.path.join(os.path.dirname(__file__), 'presentation_feed.rss') with open(rss_file, 'r') as f: rss_feed = f.read() - json_file = os.path.join(os.path.dirname(__file__), 'testpresentations.json') - with open(json_file) as f: + json_file = os.path.join(os.path.dirname(__file__), 'presentation_feed.json') + with open(json_file, 'r') as f: self.json_data = json.load(f) httpretty.enable() feedurl = "http://fosslc.org/drupal/presentations_rss/summercamp2010"