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
|