Moved tests out of package dir.
This commit is contained in:
parent
68650a5488
commit
134613aadd
11 changed files with 7 additions and 7 deletions
13
tests/test_subscribers.py
Normal file
13
tests/test_subscribers.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
from mock import Mock
|
||||
|
||||
from . import TestCase
|
||||
from rattail.pyramid import subscribers
|
||||
|
||||
|
||||
class SubscribersTests(TestCase):
|
||||
|
||||
def test_before_render(self):
|
||||
event = Mock()
|
||||
event.__setitem__ = Mock()
|
||||
subscribers.before_render(event)
|
Loading…
Add table
Add a link
Reference in a new issue