gitlab
Version:
GitLab API Nodejs library.
69 lines (49 loc) • 1.46 kB
text/coffeescript
chai = require 'chai'
expect = chai.expect
sinon = require 'sinon'
sinonChai = require 'sinon-chai'
chai.use sinonChai
describe "ProjectRepository", ->
gitlab = null
projects = null
repository = null
before ->
gitlab = (require '../')
url: 'test'
token: 'test'
projects = gitlab.projects
repository = projects.repository
beforeEach ->
describe "listBranches()", ->
it "should use GET verb", ->
getStub = sinon.stub repository, "get"
repository.listBranches 1
getStub.restore()
expect(getStub).to.have.been.called
describe "listCommits()", ->
it "should use GET verb", ->
getStub = sinon.stub repository, "get"
repository.listCommits 1
getStub.restore()
expect(getStub).to.have.been.called
describe "listTags()", ->
it "should use GET verb", ->
getStub = sinon.stub repository, "get"
repository.listTags 1
getStub.restore()
expect(getStub).to.have.been.called
describe "listTree()", ->
it "should use GET verb", ->
getStub = sinon.stub repository, "get"
repository.listTree 1
getStub.restore()
expect(getStub).to.have.been.called
describe "showFile()", ->
it "should use GET verb", ->
getStub = sinon.stub repository, "get"
repository.showFile 1, {
file_path: "test",
ref: "test"
}
getStub.restore()
expect(getStub).to.have.been.called