File: community_profile_spec.rb

package info (click to toggle)
ruby-octokit 10.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,092 kB
  • sloc: ruby: 13,339; sh: 99; makefile: 7; javascript: 3
file content (16 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

describe Octokit::Client::CommunityProfile do
  before do
    Octokit.reset!
    @client = oauth_client
  end

  describe '.community_profile', :vcr do
    it 'returns community profile metrics for a repository' do
      community_profile = @client.community_profile('octokit/octokit.rb')
      expect(community_profile.health_percentage).not_to be_nil
      assert_requested :get, github_url('/repos/octokit/octokit.rb/community/profile')
    end
  end # .community_profile
end