mirror of
https://github.com/danog/gift.git
synced 2024-11-26 20:04:47 +01:00
11 lines
242 B
CoffeeScript
11 lines
242 B
CoffeeScript
should = require 'should'
|
|
git = require '../src'
|
|
Repo = require '../src/repo'
|
|
|
|
describe "git", ->
|
|
describe "()", ->
|
|
repo = git "#{__dirname}/fixtures/simple"
|
|
|
|
it "returns a Repo", ->
|
|
repo.should.be.an.instanceof Repo
|