aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.py b/test.py
index 49b7368..ee45450 100644
--- a/test.py
+++ b/test.py
@@ -1,3 +1,3 @@
import urllib
-d = urllib.urlopen('http://localhost:8080').read()
-print d
+assert "Hello World!" == urllib.urlopen('http://localhost:8080').read()
+assert "About Flask example." == urllib.urlopen('http://localhost:8080/about').read()