Browse Source

Added missing os import.

pull/1638/head
Armin Ronacher 15 years ago
parent
commit
f6b9efc1e9
  1. 3
      docs/testing.rst

3
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):

Loading…
Cancel
Save