mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 16:30:11 +00:00
Refactor theme tests.
This commit is contained in:
parent
b38a7c1da2
commit
f5a8e36e50
@ -26,12 +26,13 @@ describe('Testing themes', function () {
|
|||||||
useful: 'green',
|
useful: 'green',
|
||||||
});
|
});
|
||||||
|
|
||||||
it('HELLO-WORLD theme should generate without throwing an exception', function () {
|
function genTheme( themeName ) {
|
||||||
|
it( themeName.toUpperCase() + ' theme should generate without throwing an exception', function () {
|
||||||
function tryOpen() {
|
function tryOpen() {
|
||||||
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
||||||
var dst = ['tests/sandbox/hello-world/resume.all'];
|
var dst = ['tests/sandbox/hello-world/resume.all'];
|
||||||
var opts = {
|
var opts = {
|
||||||
theme: 'hello-world',
|
theme: themeName,
|
||||||
format: 'FRESH',
|
format: 'FRESH',
|
||||||
prettify: true,
|
prettify: true,
|
||||||
silent: false
|
silent: false
|
||||||
@ -40,71 +41,12 @@ describe('Testing themes', function () {
|
|||||||
}
|
}
|
||||||
tryOpen.should.not.Throw();
|
tryOpen.should.not.Throw();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
it('COMPACT theme should generate without throwing an exception', function () {
|
genTheme('hello-world');
|
||||||
function tryOpen() {
|
genTheme('compact');
|
||||||
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
genTheme('modern');
|
||||||
var dst = ['tests/sandbox/compact/resume.all'];
|
genTheme('minimist');
|
||||||
var opts = {
|
genTheme('awesome');
|
||||||
theme: 'compact',
|
|
||||||
format: 'FRESH',
|
|
||||||
prettify: true,
|
|
||||||
silent: false
|
|
||||||
};
|
|
||||||
FCMD.verbs.build( src, dst, opts );
|
|
||||||
}
|
|
||||||
tryOpen.should.not.Throw();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('MODERN theme should generate without throwing an exception', function () {
|
|
||||||
function tryOpen() {
|
|
||||||
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
|
||||||
var dst = ['tests/sandbox/modern/resume.all'];
|
|
||||||
var opts = {
|
|
||||||
theme: 'modern',
|
|
||||||
format: 'FRESH',
|
|
||||||
prettify: true,
|
|
||||||
silent: false
|
|
||||||
};
|
|
||||||
FCMD.verbs.build( src, dst, opts );
|
|
||||||
}
|
|
||||||
tryOpen.should.not.Throw();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('MINIMIST theme should generate without throwing an exception', function () {
|
|
||||||
function tryOpen() {
|
|
||||||
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
|
||||||
var dst = ['tests/sandbox/minimist/resume.all'];
|
|
||||||
var opts = {
|
|
||||||
theme: 'minimist',
|
|
||||||
format: 'FRESH',
|
|
||||||
prettify: true,
|
|
||||||
silent: false
|
|
||||||
};
|
|
||||||
FCMD.verbs.build( src, dst, opts );
|
|
||||||
}
|
|
||||||
tryOpen.should.not.Throw();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('AWESOME theme should generate without throwing an exception', function () {
|
|
||||||
function tryOpen() {
|
|
||||||
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
|
||||||
var dst = ['tests/sandbox/awesome/resume.all'];
|
|
||||||
var opts = {
|
|
||||||
theme: 'awesome',
|
|
||||||
format: 'FRESH',
|
|
||||||
prettify: true,
|
|
||||||
silent: false
|
|
||||||
};
|
|
||||||
FCMD.verbs.build( src, dst, opts );
|
|
||||||
}
|
|
||||||
tryOpen.should.not.Throw();
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// describe('subtract', function () {
|
|
||||||
// it('should return -1 when passed the params (1, 2)', function () {
|
|
||||||
// expect(math.subtract(1, 2)).to.equal(-1);
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
|
Loading…
Reference in New Issue
Block a user