File: base.py

package info (click to toggle)
pyxrd 0.8.4-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,644 kB
  • sloc: python: 26,501; sh: 301; makefile: 128
file content (28 lines) | stat: -rw-r--r-- 519 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
22
23
24
25
26
27
28
#!/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.

__all__ = [
    'AbstractTestProbModel',
]

class AbstractTestProbModel():

    prob_model = None
    prob_model_type = None

    def setUp(self):
        self.prob_model = self.prob_model_type()

    def tearDown(self):
        del self.prob_model

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

    pass # end of class