aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/test_corelib.py
blob: 38c2ef9b949b15aa602a39f16fc1c31b33c041a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from hydro_roll_core import libcore

cb = libcore


def main():
    rule_pack = "example_rule_pack"
    result = cb.process_rule_pack(rule_pack)
    print(result)
    print(cb.name)
    cb.name = "a"
    print(cb.name)


if __name__ == "__main__":
    main()