From 4686a5d572d282385c391a09d2d171852f4a7429 Mon Sep 17 00:00:00 2001 From: abelcastilloavant Date: Mon, 6 Jun 2016 15:13:04 -0500 Subject: [PATCH] fail tests, watch CI fail --- tests/testthat/test-api_calls.R | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/testthat/test-api_calls.R b/tests/testthat/test-api_calls.R index 69f14dc..42cae1c 100644 --- a/tests/testthat/test-api_calls.R +++ b/tests/testthat/test-api_calls.R @@ -5,6 +5,9 @@ with_mock( `httr::DELETE` = function(...) NULL, `httr::add_headers` = function(Authorization) paste0("Authorization is ", Authorization), { + test_that("Circle catches test failures", { + expect_equal(1,2) + }) test_that("login_api_call passes url to httr::POST", { with_mock(`httr::POST` = function(url) { identical(url,"https://fake.looker.com:111/api/3.0/login?client_id=FAKE_ID&client_secret=FAKE_SECRET")