Esempio n. 1
0
def test_simple(simple_string):
    assert firstlast(simple_string) == 'ad'
Esempio n. 2
0
def test_element_0(simple_string):
    assert firstlast(simple_string)[0] == 'a'
Esempio n. 3
0
def test_first_last_list():
    assert firstlast([1, 2, 3, 4]) == [1, 4]
Esempio n. 4
0
def test_first_last_string():
    assert firstlast("abcd") == "ad"
Esempio n. 5
0
def test_first_last_tuple():
    assert firstlast((1, 2, 3, 4)) == (1, 4)