1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# -*- coding: utf-8 -*-
# preggy assertions
# https://github.com/heynemann/preggy
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2013 Bernardo Heynemann heynemann@gmail.com
from preggy import expect
from tests import Comparable, AnotherComparable
#-----------------------------------------------------------------------------
TEST_DATA = (
'qwe',
b'qwe',
b'\xff\xd8\xff\xe0\x00\x10JFIF',
[1],
{'a': 'b'},
tuple([2]),
Comparable()
)
UNICODE_TEST_DATA = (
b'asdqwe123',
'asdqwe123',
)
UNEQUAL_DATA = (
'asd',
[2],
{'c': 'd'},
tuple([3]),
Comparable('baz'),
AnotherComparable()
)
#-----------------------------------------------------------------------------
def is_equal(topic):
item, expected = topic
expect(item).to_equal(expected)
def is_not_equal(topic):
item, expected = topic
expect(item).Not.to_equal(expected)
expect(item).not_to_equal(expected)
#-----------------------------------------------------------------------------
def test_unicode_equal():
is_equal((UNICODE_TEST_DATA[0], UNICODE_TEST_DATA[1]))
def test_equal():
for item in TEST_DATA:
is_equal((item, item))
def test_not_equal():
for item in TEST_DATA:
for unequal in UNEQUAL_DATA:
is_not_equal((item, unequal))
|