Remove some pointless tests

they became broken, but not worth fixing
This commit is contained in:
Lance Edgar 2018-11-30 16:07:58 -06:00
parent 3bc0ba73ee
commit 61fa77b752
3 changed files with 4 additions and 29 deletions

View file

@ -1,17 +0,0 @@
# -*- coding: utf-8; -*-
from __future__ import unicode_literals, absolute_import
from unittest import TestCase
from mock import Mock
from tailbone import subscribers
class SubscribersTests(TestCase):
def test_before_render(self):
event = Mock()
event.__setitem__ = Mock()
subscribers.before_render(event)