mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
5 lines
243 B
Python
5 lines
243 B
Python
import urllib
|
|
assert "Hello World!" == urllib.urlopen('http://localhost:8080').read()
|
|
assert "About Flask example." == urllib.urlopen('http://localhost:8080/about').read()
|
|
assert 404 == urllib.urlopen('http://localhost:8080/list').getcode()
|