File: test_yaml.py

package info (click to toggle)
python-ruyaml 0.92.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,732 kB
  • sloc: python: 19,399; makefile: 200; sh: 13
file content (21 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8

from test_canonical import *  # NOQA
from test_constructor import *  # NOQA
from test_emitter import *  # NOQA
from test_errors import *  # NOQA
from test_input_output import *  # NOQA
from test_mark import *  # NOQA
from test_reader import *  # NOQA
from test_recursive import *  # NOQA
from test_representer import *  # NOQA
from test_resolver import *  # NOQA
from test_structure import *  # NOQA
from test_tokens import *  # NOQA

if __name__ == '__main__':
    import sys

    import test_appliance

    sys.exit(test_appliance.run(globals()))