Imported Upstream version 3.10
[platform/upstream/python-PyYAML.git] / tests / lib3 / test_yaml.py
1
2 from test_mark import *
3 from test_reader import *
4 from test_canonical import *
5 from test_tokens import *
6 from test_structure import *
7 from test_errors import *
8 from test_resolver import *
9 from test_constructor import *
10 from test_emitter import *
11 from test_representer import *
12 from test_recursive import *
13 from test_input_output import *
14
15 if __name__ == '__main__':
16     import test_appliance
17     test_appliance.run(globals())
18