summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-install-checks/test/check-git.js
blob: 0fadd0631b73d4f6861ad2be367047eb4c4c0347 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
var test = require('tap').test
var c = require('../index.js').checkGit
var rimraf = require('rimraf')
var mkdirp = require('mkdirp')
var path = require('path')
var gitFixturePath = path.resolve(__dirname, 'out')

test('is .git repo', function (t) {
  mkdirp(gitFixturePath + '/.git', function () {
    c(gitFixturePath, function (err) {
      t.ok(err, 'error present')
      t.equal(err.code, 'EISGIT')
      t.end()
    })
  })
})

test('is not a .git repo', function (t) {
  c(__dirname, function (err) {
    t.notOk(err, 'error not present')
    t.end()
  })
})

test('non-thing', function (t) {
  c('/path/to/no/where', function (err) {
    t.notOk(err, 'non-existent path is not a .git repo')
    t.end()
  })
})

test('cleanup', function (t) {
  rimraf(gitFixturePath, function () {
    t.pass('cleanup')
    t.end()
  })
})