~johnsca/charms/trusty/cloudfoundry/better-basic-reconciler-status

« back to all changes in this revision

Viewing changes to tests/test_charmgen.py

  • Committer: Benjamin Saller
  • Date: 2014-06-19 01:16:33 UTC
  • Revision ID: benjamin.saller@canonical.com-20140619011633-l5ef5ompcighkxn1
initial version of generator lib + 'charm'

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
"""
 
5
test_charmgen
 
6
----------------------------------
 
7
 
 
8
Tests for `charmgen` module.
 
9
"""
 
10
 
 
11
import unittest
 
12
 
 
13
from charmgen import charmgen
 
14
 
 
15
 
 
16
class TestCharmgen(unittest.TestCase):
 
17
 
 
18
    def setUp(self):
 
19
        pass
 
20
 
 
21
    def test_something(self):
 
22
        pass
 
23
 
 
24
    def tearDown(self):
 
25
        pass
 
26
 
 
27
if __name__ == '__main__':
 
28
    unittest.main()