test push to julython

This commit is contained in:
Stephen M. McQuay 2012-07-11 10:17:15 -06:00
parent 889cdf201c
commit 70f274e96c
1 changed files with 11 additions and 0 deletions

11
surf/test/test_test.py Normal file
View File

@ -0,0 +1,11 @@
import unittest
class Testor(unittest.TestCase):
@unittest.skip('for "unknown" reasons')
def test_a(self):
a = 12
self.assertEqual(12, a)
def test_b(self):
self.skipTest('for "unknown" reasons')
pass