Skip to content

Commit

Permalink
Renamed test .rss and .json files; made test fail for issue Freeseer#555
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskunjoolee committed Apr 22, 2014
1 parent f42ed17 commit 8fc7886
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8fc7886

Please sign in to comment.