blob: 64dcab1d59b7ef95f5908a6970959b9e07a6cb71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import unittest
from pyramid import testing
class ViewTests(unittest.TestCase):
def setUp(self):
self.config = testing.setUp()
def tearDown(self):
testing.tearDown()
def test_my_view(self):
from .views import my_view
request = testing.DummyRequest()
info = my_view(request)
self.assertEqual(info['project'], 'MyProject')
|