From 10809c2ef7dd68273fe3254af63cf402bf5a02e3 Mon Sep 17 00:00:00 2001 From: Takayuki Miyahara Date: Wed, 2 Oct 2019 17:40:49 +0900 Subject: [PATCH] doc: remove duplicated test case on ./docs/usage/testing.md --- docs/usage/testing.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/usage/testing.md b/docs/usage/testing.md index 527262931..a6f45dca0 100644 --- a/docs/usage/testing.md +++ b/docs/usage/testing.md @@ -48,11 +48,6 @@ describe 'Whether access is ocurring properly', type: :request do expect(response.status).to eq(200) end - it 'gives you an authentication code if you are an existing user and you satisfy the password' do - login - expect(response.has_header?('access-token')).to eq(true) - end - it 'first get a token, then access a restricted page' do login auth_params = get_auth_params_from_login_response_headers(response)