test/data/scripts/script2.py
author Florent Cayré <florent.cayre@logilab.fr>
Fri, 20 Jul 2012 11:42:59 +0200
branchstable
changeset 8481 ff3b163f52e9
parent 6631 26c303c3f1aa
permissions -rw-r--r--
[predicates] fix predicates that erroneously evaluate the entity passed as a parameter as a boolean, instead of testing its existence in the keyword arguments -using the kwargs.get('entity') idiom instead of 'entity' in kwargs or similar- ; closes #2424288

from os.path import join
assert __file__.endswith(join('scripts', 'script2.py')), __file__
assert '__main__' == __name__, __name__
assert ['-v'] == __args__, __args__