Sha256: af6de67c63b9f1e801854c904fa323b6800fdcdfeb98ede3cc54ddef66501742

Contents?: true

Size: 839 Bytes

Versions: 6

Compression:

Stored size: 839 Bytes

Contents

require 'spec_helper'

describe StackExchange::StackOverflow::Statistics do

  describe 'when querying for statistics' do
    it "should return the stack overflow's statistics" do
      response = StackOverflow::Statistics.all
      response.total_questions.should == 692539
      response.total_unanswered.should == 107245
      response.total_answers.should == 1938135
      response.total_comments.should == 2724322
      response.total_votes.should == 6817279
      response.total_badges.should == 699700
      response.total_users.should == 247683
      response.questions_per_minute.should == 1.78
      response.answers_per_minute.should == 3.71
      response.badges_per_minute.should == 1.58
      response.api_version['version'].should == "0.8"
      response.api_version['revision'].should == "1.0.1234.5678"
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pilha-0.2.2 spec/pilha/stack_overflow/statistics_spec.rb
pilha-0.2.1 spec/pilha/stack_overflow/statistics_spec.rb
pilha-0.2.0 spec/pilha/stack_overflow/statistics_spec.rb
pilha-0.1.9 spec/pilha/stack_overflow/statistics_spec.rb
pilha-0.1.8 spec/pilha/stack_overflow/statistics_spec.rb
pilha-0.1.7 spec/pilha/stack_overflow/statistics_spec.rb