Public Member Functions | |
def | test_contains |
def | test_equality |
def | test_filter_compatible |
def | test_filter_empty |
def | test_filter_incompatible |
def | test_hash |
def | test_matches |
def | test_parsing |
def | test_parsing_split |
def | test_select_compatible |
def | test_select_empty |
def | test_select_incompatible |
Static Public Attributes | |
dictionary | examples |
dictionary | matches |
dictionary | split_examples |
Definition at line 381 of file test_base.py.
def tests.test_base.SpecTestCase.test_contains | ( | self | ) |
Definition at line 513 of file test_base.py.
def tests.test_base.SpecTestCase.test_equality | ( | self | ) |
Definition at line 445 of file test_base.py.
Definition at line 466 of file test_base.py.
def tests.test_base.SpecTestCase.test_filter_empty | ( | self | ) |
Definition at line 452 of file test_base.py.
Definition at line 457 of file test_base.py.
def tests.test_base.SpecTestCase.test_hash | ( | self | ) |
Definition at line 516 of file test_base.py.
def tests.test_base.SpecTestCase.test_matches | ( | self | ) |
Definition at line 426 of file test_base.py.
def tests.test_base.SpecTestCase.test_parsing | ( | self | ) |
Definition at line 387 of file test_base.py.
def tests.test_base.SpecTestCase.test_parsing_split | ( | self | ) |
Definition at line 403 of file test_base.py.
Definition at line 499 of file test_base.py.
def tests.test_base.SpecTestCase.test_select_empty | ( | self | ) |
Definition at line 486 of file test_base.py.
Definition at line 490 of file test_base.py.
dictionary tests::test_base.SpecTestCase::examples [static] |
{ '>=0.1.1,<0.1.2': ['>=0.1.1', '<0.1.2'], '>=0.1.0,!=0.1.3-rc1,<0.1.3': ['>=0.1.0', '!=0.1.3-rc1', '<0.1.3'], }
Definition at line 382 of file test_base.py.
dictionary tests::test_base.SpecTestCase::matches [static] |
{ '>=0.1.1,<0.1.2': ( ['0.1.1', '0.1.1+4', '0.1.1-alpha'], ['0.1.2-alpha', '0.1.2', '1.3.4'], ), '>=0.1.0+,!=0.1.3-rc1,<0.1.4': ( ['0.1.1', '0.1.0+b4', '0.1.2', '0.1.3-rc2'], ['0.0.1', '0.1.4', '0.1.4-alpha', '0.1.3-rc1+4', '0.1.0-alpha', '0.2.2', '0.1.4-rc1'], ), }
Definition at line 414 of file test_base.py.
dictionary tests::test_base.SpecTestCase::split_examples [static] |
{ ('>=0.1.1', '<0.1.2', '!=0.1.1+build1'): ['>=0.1.1', '<0.1.2', '!=0.1.1+build1'], ('>=0.1.0', '!=0.1.3-rc1,<0.1.3'): ['>=0.1.0', '!=0.1.3-rc1', '<0.1.3'], }
Definition at line 398 of file test_base.py.