pending test for file_store and redis_store
This commit is contained in:
parent
4666fedaed
commit
53be124a6f
|
@ -2,12 +2,13 @@ require 'spec_helper'
|
|||
require_relative '../../../../../lib/google/api_client/auth/storages/file_store'
|
||||
|
||||
describe Google::APIClient::FileStore do
|
||||
let(:client) { Google::APIClient.new(:application_name => 'API Client Tests') }
|
||||
let(:root_path) { File.expand_path(File.join(__FILE__, '..', '..', '..')) }
|
||||
let(:json_file) { File.expand_path(File.join(root_path, 'fixtures', 'files', 'auth_stored_credentials.json')) }
|
||||
|
||||
it 'should initialize'
|
||||
|
||||
it 'should load_credentials'
|
||||
it 'should load credentials'
|
||||
|
||||
it 'should write credentials'
|
||||
|
||||
end
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
require 'spec_helper'
|
||||
require_relative '../../../../../lib/google/api_client/auth/storages/redis_store'
|
||||
|
||||
describe Google::APIClient::RedisStore do
|
||||
let(:json_file) { File.expand_path(File.join(root_path, 'fixtures', 'files', 'auth_stored_credentials.json')) }
|
||||
|
||||
it 'should initialize'
|
||||
|
||||
it 'should load credentials'
|
||||
|
||||
it 'should write credentials'
|
||||
|
||||
end
|
Loading…
Reference in New Issue