def test_exists_false(subcall_cmd_error, svc_resource): k = Kubernetes(body=svc_resource['body']) assert k.exists() is False
def test_exists_true(subcall_get_assert, svc_resource): k = Kubernetes(body=svc_resource['body']) assert k.exists() is True