def test__pass_through__two(): somelist = ['monkey', 'foo', 'bar'] assert(utils.pass_through(somelist) == somelist)
def test__pass_through(): assert(utils.pass_through('monkey') == 'monkey')