Sha256: c9aa6103dc729379b6ee770cd31c7eb9113a99b830c55373373ddefcdf679889
Contents?: true
Size: 429 Bytes
Versions: 3
Compression:
Stored size: 429 Bytes
Contents
require 'spec_helper' require 'chatwork' describe ChatWork do its(:client) { should be_a(ChatWork::Client) } its(:api_base) { should eq('https://api.chatwork.com/') } describe '#api_base=' do before { subject.api_base = 'https://test.example.com/' } its(:api_base) { should eq('https://test.example.com/') } its(:api_base) { should eq('https://test.example.com/') } end its(:api_key) { should be_nil } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
chatwork-0.0.5 | spec/lib/chatwork_spec.rb |
chatwork-0.0.3 | spec/lib/chatwork_spec.rb |
chatwork-0.0.2 | spec/lib/chatwork_spec.rb |