File: test_pyxrdmodel.py

package info (click to toggle)
pyxrd 0.8.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,848 kB
  • sloc: python: 26,500; sh: 301; makefile: 128
file content (31 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (3)
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
28
29
30
31
#!/usr/bin/python

# coding=UTF-8
# ex:ts=4:sw=4:et=on

# Copyright (c) 2013, Mathijs Dumon
# All rights reserved.
# Complete license can be found in the LICENSE file.

import unittest

from pyxrd.generic.models import PyXRDModel

__all__ = [
    'TestPyXRDModel',
]

class TestPyXRDModel(unittest.TestCase):

    def setUp(self):
        self.pyxrdmodel = PyXRDModel()

    def tearDown(self):
        del self.pyxrdmodel

    def test_not_none(self):
        self.assertIsNotNone(self.pyxrdmodel)

    # TODO everything else

    pass # end of class