Beispiel #1
0
def test__match_section():
    # no match in first 5
    section = [0, 1, 2, 3, 4, 'something']
    match = {
        'Foo': 'Bar',
    }
    eq_(nasc._match_section(section, match), None)
def test__match_section():
    #no match in first 5
    section = range(5) + ['something']
    match = {'Foo': 'Bar', }
    eq_(nasc._match_section(section, match), None)
Beispiel #3
0
def test__match_section():
    #no match in first 5
    section = [0, 1, 2, 3, 4, 'something']
    match = {'Foo': 'Bar', }
    eq_(nasc._match_section(section, match), None)