Basic test infrastructure:

1. Stubs for some tests
2. tox.ini file with environments list
This commit is contained in:
Ivan Kolodyazhny
2013-09-21 00:46:44 +03:00
committed by Ivan Kolodyazhny
parent f548d1878b
commit e9d2588809
3 changed files with 21 additions and 0 deletions

0
tests/__init__.py Normal file
View File

12
tests/test_plugin.py Normal file
View File

@@ -0,0 +1,12 @@
import unittest
class TimerPlugin(unittest.TestCase):
def test_addOptions(self):
self.fail()
def test_format_report(self):
self.fail()
def test_timeTaken(self):
self.fail()

9
tox.ini Normal file
View File

@@ -0,0 +1,9 @@
[tox]
envlist = py33,py32,py31,py27,py26,py25,py24
[testenv]
deps =
nose
mock
commands =
nosetests