pending test for file_store and redis_store

This commit is contained in:
Volker Zöpfel 2013-11-28 10:26:23 +01:00
parent 4666fedaed
commit 53be124a6f
2 changed files with 16 additions and 2 deletions

View File

@ -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

View File

@ -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