You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import unittest
|
|
|
|
class TestPython(unittest.TestCase):
|
|
def test_float_to_int_coercion(self):
|
|
self.assertEqual(1, int(1.0))
|
|
|
|
def test_get_empty_dict(self):
|
|
self.assertIsNone({}.get("key"))
|
|
|
|
def test_trueness(self):
|
|
self.assertTrue(bool(10)) |