コード例 #1
0
    def test_even(self):
        things = [
            True,
            True,
            False,
            False,
            False,
        ]

        assert not bools.xor(*things)
コード例 #2
0
    def test_even(self):
        things = [
            True,
            True,
            False,
            False,
            False,
        ]

        T.assert_equal(bools.xor(*things), False)
コード例 #3
0
    def test_odd(self):
        things = [
            True,
            True,
            True,
            False,
            False,
            False,
            False,
        ]

        assert bools.xor(*things)
コード例 #4
0
ファイル: bools_test.py プロジェクト: haaksmash/pyutils
    def test_even(self):
        things = [True, True, False, False, False]

        assert not bools.xor(*things)
コード例 #5
0
ファイル: bools_test.py プロジェクト: haaksmash/pyutils
    def test_odd(self):
        things = [True, True, True, False, False, False, False]

        assert bools.xor(*things)