diff --git a/spec/google/api_client/auth/storages/file_store_spec.rb b/spec/google/api_client/auth/storages/file_store_spec.rb index cd7dbc94d..b2cee7c8d 100644 --- a/spec/google/api_client/auth/storages/file_store_spec.rb +++ b/spec/google/api_client/auth/storages/file_store_spec.rb @@ -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 diff --git a/spec/google/api_client/auth/storages/redis_store_spec.rb b/spec/google/api_client/auth/storages/redis_store_spec.rb new file mode 100644 index 000000000..ba5b88923 --- /dev/null +++ b/spec/google/api_client/auth/storages/redis_store_spec.rb @@ -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