You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
260 B
10 lines
260 B
7 years ago
|
from pyramid.testing import DummyRequest
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
def test_welcome():
|
||
|
from ordr.views.errors import notfound_view
|
||
|
request = DummyRequest()
|
||
|
result = notfound_view(None, request)
|
||
|
assert result == {}
|
||
|
assert request.response.status == '404 Not Found'
|