Suppress warning "ResourceWarning: unclosed file"

pull/21/head
Mišo Belica 11 years ago
parent c69cd4b2ba
commit e3b6ee2fd6

@ -6,9 +6,13 @@ TEST_DIR = path.dirname(__file__)
def load_snippet(filename):
"""Helper to fetch in the content of a test snippet"""
return open(path.join(TEST_DIR, 'test_snippets', filename)).read()
file_path = path.join(TEST_DIR, 'test_snippets', filename)
with open(file_path) as file:
return file.read()
def load_article(filename):
"""Helper to fetch in the content of a test article"""
return open(path.join(TEST_DIR, 'test_articles', filename)).read()
file_path = path.join(TEST_DIR, 'test_articles', filename)
with open(file_path) as file:
return file.read()

Loading…
Cancel
Save