Last active
January 5, 2017 23:46
-
-
Save redrush85/c15a857713e8f6ad7ee765b0a3a2b17d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
class TestAwesomeFeature(unittest.TestCase): | |
def setUp(self): | |
self.data = list() | |
def test_cool_method(self): | |
self.assertEqual(0, 1, "Wrong data") | |
self.assertGreater(len(self.data), 0, "Something wrong") | |
self.assertTrue(False, "Wrong condition") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment