From f6b9efc1e9b94382b877c0d1ebe87956b78d012f Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Tue, 20 Apr 2010 20:03:03 +0200 Subject: [PATCH] Added missing os import. --- docs/testing.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/testing.rst b/docs/testing.rst index eb4397a2..219825ea 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -35,8 +35,9 @@ The Testing Skeleton In order to test that, we add a second module ( `flaskr_tests.py`) and create a unittest skeleton there:: - import unittest + import os import flaskr + import unittest import tempfile class FlaskrTestCase(unittest.TestCase):