summaryrefslogtreecommitdiff
path: root/testing/code/test_class.py
blob: 36f67bd5150a89698cc796abbe54355d286aafa4 (plain)
1
2
3
4
5
6
7
8
9
10
11

class TestSomething(object):
    def test_something_has_hello(self):
        x = 'hello1'
        y = 'hello world'
        assert x in y

    def test_something_else(self):
        a = [1, 2, 3]
        b = {1, 2, 3}
        assert a == b