All tests passed! Scanner and Parser seem to be correct.
[pyyaml/python3.git] / tests / test_yaml.py
blobc9be9dd7938660d3a678929a3b106d032d688f60
2 import unittest
4 from test_marker import *
5 from test_canonical import *
6 from test_tokens import *
7 from test_structure import *
9 def main(module='__main__'):
10 unittest.main(module)
12 if __name__ == '__main__':
13 main()