The code below fails because twisted.trial.unittest.TestCase, the desired baseclass, is not the baseclass.
from twisted.trial import unittest
from unittest import TestCase
import myapp
class Feature(TestCase):
def setUp(self):
self.callbackCounter = 0
def checkCbCalled(self, expected):
self.assertEqual(self.callbackCounter, expected)
def testTrialCallsDeferred(self):
d = myapp.buildFeature()
self.addCleanup(self.checkCbCalled, expected=1)
def cb(res):
self.callbackCounter += 1
d.addCallback(cb).addErrback(self.fail)
return d # does not fire because of 'import rules'?
If I had said
from twisted.trial import unittest as trialut
from trialut import TestCase
or, better:
from twisted.trial.unittest import TestCase
then the test would run as expected and trial.unittest.TestCase would have fired my deferred.
This seems as though the local recently imported thing should have superceded the one available in {lib/pythonX.X/unittest}. I understand it must be a rule based on sys.path or something else implicit or explicit. This tripped me up for a little too long because I did not have the call to addCleanup and all tests were passing because returned deferred instance was not being fired.
I broke some rule(s), Please advise some reading or other.
Thanks Mike
from trialut import TestCaseworks. Does it work withfrom __future__ absolute_import? – jrennie Jan 6 at 19:16