Skip to content

Commit

Permalink
add very genreal smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
samkuehn committed Feb 12, 2015
1 parent 2fde33c commit 375cec1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools import find_packages, setup

TEST_REQUIRES = [
'coverage',
Expand Down
12 changes: 12 additions & 0 deletions tests/test_backup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unittest2 as unittest

from backup import * # noqa


class BackupTestCase(unittest.TestCase):
def test_stub(self):
self.assertEqual(1, 1)


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

0 comments on commit 375cec1

Please sign in to comment.