Предизвикателства > She's a witch! > Решения > Решението на Камен Колев

Резултати
0 точки от тестове
0 точки от учител

0 точки общо

0 успешни теста
1 неуспешни теста
Код

 1def logic_mixin_factory(mass, mass_attr_name, material, material_attr_name, float_method_name):
 2    class Mixin:
 3        def is_a_witch(self):
 4            if hasattr(self, mass_attr_name) and getattr(self, mass_attr_name) == mass:
 5                return "Burn her!"
 6            elif hasattr(self, material_attr_name) and getattr(self, material_attr_name) == material:
 7                return "Burn her!"
 8            elif hasattr(self, float_method_name):
 9                return "Burn her!"
10            else:
11                return "No, but it's a pity, cuz she looks like a witch!"
12    return Mixin

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)

Дискусия
История
Това решение има само една версия.