1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00
gift/test/status_opts.test.coffee

87 lines
2.6 KiB
CoffeeScript
Raw Normal View History

2014-10-06 15:40:06 +02:00
should = require 'should'
fixtures = require './fixtures'
git = require '../src'
Status = require '../src/status'
GIT_STATUS = """
M cheese.txt
D crackers.txt
M file.txt
?? pickles.txt
?? burger/
"""
GIT_STATUS_OPT = """
M cheese.txt
D crackers.txt
M file.txt
?? pickles.txt
?? burger/bun.txt
?? burger/patty.txt
"""
GIT_STATUS_CLEAN = ""
GIT_STATUS_NOT_CLEAN = """
A lib/index.js
M npm-shrinkwrap.json
M package.json
"""
describe "Status With Options", ->
describe "()", ->
describe "when there are no changes", ->
repo = fixtures.status_opts
status = new Status.Status repo
status.parse GIT_STATUS_CLEAN
it "is clean", ->
status.clean.should.be.true
describe "when there are changes", ->
repo = fixtures.status_opts
status = new Status.Status repo
status.parse GIT_STATUS_NOT_CLEAN
it "is not clean", ->
status.clean.should.be.false
describe "when there are changes", ->
repo = fixtures.status_opts
status = new Status.Status repo
status.parse GIT_STATUS
it "has a modified staged file", ->
status.files["file.txt"].staged.should.be.true
status.files["file.txt"].type.should.eql "M"
status.files["file.txt"].tracked.should.be.true
it "has a modified unstaged file", ->
status.files["cheese.txt"].staged.should.be.false
status.files["crackers.txt"].type.should.eql "D"
status.files["cheese.txt"].type.should.eql "M"
status.files["cheese.txt"].tracked.should.be.true
it "has a deleted file", ->
status.files["crackers.txt"].staged.should.be.true
status.files["crackers.txt"].type.should.eql "D"
status.files["crackers.txt"].tracked.should.be.true
it "has an untracked file", ->
status.files["pickles.txt"].tracked.should.be.false
should.not.exist status.files["pickles.txt"].type
it "has an untracked directory", ->
status.files["burger/"].tracked.should.be.false
should.not.exist status.files["burger/"].type
it "is not clean", ->
status.clean.should.be.false
describe "when the -u option is specified", ->
repo = fixtures.status_opts
status = new Status.Status repo, "-u"
status.parse GIT_STATUS_OPT
it "lists files in untracked directories", ->
status.files["burger/bun.txt"].tracked.should.be.false
should.not.exist status.files["burger/bun.txt"].type
status.files["burger/patty.txt"].tracked.should.be.false
should.not.exist status.files["burger/patty.txt"].type