Lichen

Annotated tests/chains/main.py

820:be4f3575f605
2018-01-08 Paul Boddie Added tests for attribute initialisation plus testing for duplicate parameters.
paul@2 1
import package.module
paul@2 2
paul@15 3
C = module.Class
paul@15 4
c = module
paul@15 5
f = c.Class
paul@2 6
paul@2 7
def t():
paul@15 8
    x = c.Class
paul@214 9
    return x
paul@214 10
paul@315 11
print C.attr                    # 457
paul@315 12
print f.attr                    # 457
paul@315 13
print t().attr                  # 457