qiita 0.0.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/spec/qiita_spec.rb DELETED
@@ -1,18 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Qiita do
4
- it { should respond_to(:new) }
5
-
6
- describe 'new' do
7
- it 'returns Qiita::Client instance' do
8
- subject.new.should be_a_kind_of(Qiita::Client)
9
- end
10
- end
11
-
12
- describe 'method_missing' do
13
- it 'delegates method to Qiita::Client instance' do
14
- Qiita::Client.any_instance.should_receive(:rate_limit)
15
- subject.rate_limit
16
- end
17
- end
18
- end