Moved tests out of package dir.

This commit is contained in:
Lance Edgar 2013-07-22 19:22:18 -07:00
parent 68650a5488
commit 134613aadd
11 changed files with 7 additions and 7 deletions

13
tests/test_subscribers.py Normal file
View 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)