File: ghes_manage_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 (10 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

describe Octokit::ManageGHESClient do
  describe 'module configuration' do
    it 'inherits Octokit::Client' do
      manage_ghes = Octokit::ManageGHESClient.new
      expect manage_ghes.is_a? Octokit::Client
    end
  end
end