Esempio n. 1
0
 def test_tactics(self):
     # configure from empty and a layer with tactics
     c = ComposerConfig()
     c._tactics = ['a', 'b', 'c']
     c = c.new_child()
     c._tactics = ['d', 'c']
     self.assertEqual(c.tactics()[:5], ['d', 'c', 'a', 'b', 'c'])