Revision: 183d93bc32e3 Author: Mikko Korpela <[email protected]> Date: Wed Dec 14 00:47:58 2011 Log: failing utest .. testing CI http://code.google.com/p/robotframework/source/detail?r=183d93bc32e3
Added: /utest/test_that_fails.py ======================================= --- /dev/null +++ /utest/test_that_fails.py Wed Dec 14 00:47:58 2011 @@ -0,0 +1,11 @@ +__author__ = 'mkorpela' + +import unittest + + +class MyTestCase(unittest.TestCase): + def test_something(self): + self.assertEqual(True, False) + +if __name__ == '__main__': + unittest.main()
