Skip to content

Commit 53be124

Browse files
committed
pending test for file_store and redis_store
1 parent 4666fed commit 53be124

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

spec/google/api_client/auth/storages/file_store_spec.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
require_relative '../../../../../lib/google/api_client/auth/storages/file_store'
33

44
describe Google::APIClient::FileStore do
5-
let(:client) { Google::APIClient.new(:application_name => 'API Client Tests') }
65
let(:root_path) { File.expand_path(File.join(__FILE__, '..', '..', '..')) }
76
let(:json_file) { File.expand_path(File.join(root_path, 'fixtures', 'files', 'auth_stored_credentials.json')) }
87

98
it 'should initialize'
109

11-
it 'should load_credentials'
10+
it 'should load credentials'
11+
12+
it 'should write credentials'
1213

1314
end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require 'spec_helper'
2+
require_relative '../../../../../lib/google/api_client/auth/storages/redis_store'
3+
4+
describe Google::APIClient::RedisStore do
5+
let(:json_file) { File.expand_path(File.join(root_path, 'fixtures', 'files', 'auth_stored_credentials.json')) }
6+
7+
it 'should initialize'
8+
9+
it 'should load credentials'
10+
11+
it 'should write credentials'
12+
13+
end

0 commit comments

Comments
 (0)