7 lines
146 B
Python
7 lines
146 B
Python
import unittest
|
|
|
|
class Testing(unittest.TestCase):
|
|
def test_string(self):
|
|
a = 'some'
|
|
b = 'some'
|
|
self.assertEqual(a, b) |