File: test_io.py

package info (click to toggle)
cclib 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,296 kB
  • sloc: python: 15,486; sh: 101; makefile: 86
file content (27 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017, the cclib development team
#
# This file is part of cclib (http://cclib.github.io) and is distributed under
# the terms of the BSD 3-Clause License.

"""Run writer unit tests for cclib."""

import sys
import unittest

sys.path.insert(1, 'io')

from .io.testccio import *
from .io.testcjsonreader import *
from .io.testcjsonwriter import *
from .io.testfilewriter import *
from .io.testmoldenwriter import *
from .io.testwfxwriter import *
from .io.testxyzreader import *
from .io.testxyzwriter import *
from .io.testscripts import *


if __name__ == "__main__":
    unittest.main()