Some renaming.
[pyyaml/python3.git] / tests / test_yaml.py
blobf391a50b7e811525ce72593cf8c4c988e3e8b74f
2 import unittest
4 from test_marker import *
5 from test_reader import *
6 from test_canonical import *
7 from test_tokens import *
8 from test_structure import *
10 def main(module='__main__'):
11 unittest.main(module)
13 if __name__ == '__main__':
14 main()