def test_list_builds(self, openshift): l = openshift.list_builds() assert l is not None assert bool(l.json()) # is there at least something
def test_list_builds(self, openshift): # noqa list_builds = openshift.list_builds() assert list_builds is not None assert bool(list_builds.json()) # is there at least something