tests/misc.py

Mon, 22 Jan 2018 21:21:53 +0200

author
Santeri Piippo
date
Mon, 22 Jan 2018 21:21:53 +0200
changeset 26
7c263b864371
parent 25
8990ac138cc2
child 38
66c9591b733d
permissions
-rw-r--r--

Added command line option to list all checks.

from testsuite import warning

def colours_test(model):
    ''' Checks that all colours used in the part model are valid. '''
    yield from (
        warning(element, 'bad-colour', colour_index = element.colour.index)
        for element in model.body
        if hasattr(element, 'colour') and not element.colour.is_valid
    ) 

manifest = {
    'tests': {
        'colour-validity': colours_test,
    },
    'messages': {
        'bad-colour': lambda colour_index: str.format(
            'invalid colour {}',
            colour_index,
        ),
    },
}

mercurial