mirror of
https://github.com/wahyd4/ruby-sdk.git
synced 2026-08-09 04:46:10 +10:00
13 lines
344 B
Ruby
Executable File
13 lines
344 B
Ruby
Executable File
# -*- encoding: utf-8 -*-
|
|
|
|
require 'bundler/setup'
|
|
require 'qiniu/rs'
|
|
require 'rspec'
|
|
|
|
RSpec.configure do |config|
|
|
config.before :all do
|
|
Qiniu::RS.establish_connection! :client_id => "abcd0c7edcdf914228ed8aa7c6cee2f2bc6155e2",
|
|
:client_secret => "fc9ef8b171a74e197b17f85ba23799860ddf3b9c"
|
|
end
|
|
end
|