solve unittest bugs and undetected develop_steps bug

This commit is contained in:
Benjamin Bertrand
2016-03-07 11:43:33 +03:00
parent 190b247fe4
commit 142eaa9c32
5 changed files with 49 additions and 43 deletions

View File

@@ -55,6 +55,9 @@ class Explicable(Renderable):
>>> action = Explicable()
>>> from .expression import Expression
>>> action.postfix_tokens = Expression('42')
>>> for i in action.history_generator():
... print(i)
42
>>> action.this_append_before([Expression('2+10*4'), Expression('2+40')])
>>> for i in action.history_generator():
... print(i)