Skip to content

Commit

Permalink
devDependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
wbyoung committed Jun 15, 2014
1 parent e53b767 commit c7b572f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Blowtorch

[![NPM version][npm-image]][npm-url] [![Build status][travis-image]][travis-url] [![Code Climate][codeclimate-image]][codeclimate-url] [![Coverage Status][coverage-image]][coverage-url] [![Dependencies][david-image]][david-url]
[![NPM version][npm-image]][npm-url] [![Build status][travis-image]][travis-url] [![Code Climate][codeclimate-image]][codeclimate-url] [![Coverage Status][coverage-image]][coverage-url] [![Dependencies][david-image]][david-url] [![devDependencies][david-dev-image]][david-dev-url]

> This repository is for learning purposes. It may intentionally contain bugs or
fail to function properly. The code may be purposefully difficult to read,
Expand Down Expand Up @@ -43,3 +43,5 @@ default configuration for each page.
[coverage-url]: https://coveralls.io/r/wbyoung/jsi-blowtorch
[david-image]: https://david-dm.org/wbyoung/jsi-blowtorch.png?theme=shields.io
[david-url]: https://david-dm.org/wbyoung/jsi-blowtorch
[david-dev-image]: https://david-dm.org/wbyoung/jsi-blowtorch/dev-status.png?theme=shields.io
[david-dev-url]: https://david-dm.org/wbyoung/jsi-blowtorch#info=devDependencies
19 changes: 19 additions & 0 deletions test/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,23 @@ describe('Project', function() {
});
});
});

it.skip('generates results with haml', function(done) {
var project = new Project(path.join(__dirname, 'fixtures/site-haml'));
var expectedDir = path.join(__dirname, 'expected/site-haml');
temp.mkdir('tmp', function(err, dir) {
expect(err).to.not.exist;
project.generate(dir, function(err) {
expect(err).to.not.exist;
fsExtras.directoriesEqual(expectedDir, dir, function(err, equal) {
expect(err).to.not.exist;
expect(equal).to.be.true;
temp.cleanup(function(err) {
expect(err).to.not.exist;
done();
});
});
});
});
});
});

0 comments on commit c7b572f

Please sign in to comment.