Skip to content

Instantly share code, notes, and snippets.

@redrush85
Last active January 5, 2017 23:46
Show Gist options
  • Save redrush85/c15a857713e8f6ad7ee765b0a3a2b17d to your computer and use it in GitHub Desktop.
Save redrush85/c15a857713e8f6ad7ee765b0a3a2b17d to your computer and use it in GitHub Desktop.
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