Commit 5ec550424b5f17025e27cb97575c31b07a2e62af

Authored by Macieski
1 parent b188cf44
Exists in master

delete

Showing 1 changed file with 0 additions and 16 deletions   Show diff stats
wscacicneo/test/tests.py
... ... @@ -1,16 +0,0 @@
1   -import unittest
2   -from pyramid import testing
3   -
4   -
5   -class ViewTests(unittest.TestCase):
6   - def setUp(self):
7   - self.config = testing.setUp()
8   -
9   - def tearDown(self):
10   - testing.tearDown()
11   -
12   - def test_my_view(self):
13   - from .views import my_view
14   - request = testing.DummyRequest()
15   - info = my_view(request)
16   - self.assertEqual(info['project'], 'WSCacicNeo')