File: user_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 (26 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

describe Octokit::User do
  describe '.path' do
    context 'with no user passed' do
      it 'returns default path' do
        path = Octokit::User.path nil
        expect(path).to eq 'user'
      end
    end

    context 'with login' do
      it 'returns login api path' do
        path = Octokit::User.path 'pengwynn'
        expect(path).to eq 'users/pengwynn'
      end
    end # with login

    context 'with id' do
      it 'returns id api path' do
        path = Octokit::User.path 865
        expect(path).to eq 'user/865'
      end
    end # with id
  end # .path
end # Octokit::User