1def logic_mixin_factory(mass, mass_attr_name, material, material_attr_name, float_method_name):
2
3
4 class WitchMixin:
5
6 def is_a_witch(self):
7 has_mass = getattr(self, mass_attr_name, None) == mass
8 has_material = getattr(self, material_attr_name, None) == material
9 has_float_method = getattr(self, float_method_name, None)
10
11 if has_mass or has_material or has_float_method:
12 return "Burn her!"
13 else:
14 return "No, but it's a pity, cuz she looks like a witch!"
15
16 return WitchMixin
F
======================================================================
FAIL: test_realcase (test.TestWitchMixinFactory)
Real test for the Witch factory.
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/test.py", line 50, in test_realcase
self.assertEqual(FloatFalse().is_a_witch(), self.RESULT_FALSE)
AssertionError: 'Burn her!' != "No, but it's a pity, cuz she looks like a witch!"
- Burn her!
+ No, but it's a pity, cuz she looks like a witch!
----------------------------------------------------------------------
Ran 1 test in 0.000s
FAILED (failures=1)