Test colors and comments
This commit is contained in:
parent
b9a00ed68b
commit
2273e0174f
13
test/color.test.js
Normal file
13
test/color.test.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
var assert = require('assert');
|
||||||
|
var tree = require('../lib/carto/tree.js');
|
||||||
|
require('../lib/carto/tree/color');
|
||||||
|
|
||||||
|
describe('Color', function() {
|
||||||
|
describe('basic functionality', function() {
|
||||||
|
it('should be constructed', function() {
|
||||||
|
var f = new tree.Color([0, 0, 0], 1);
|
||||||
|
assert.deepEqual(f.toHSL(), {"h":0,"s":0,"l":0,"a":1});
|
||||||
|
assert.ok(f);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
14
test/comment.test.js
Normal file
14
test/comment.test.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
var assert = require('assert');
|
||||||
|
var tree = require('../lib/carto/tree.js');
|
||||||
|
require('../lib/carto/tree/comment');
|
||||||
|
|
||||||
|
describe('Comment', function() {
|
||||||
|
describe('basic functionality', function() {
|
||||||
|
it('should be constructed', function() {
|
||||||
|
var f = new tree.Comment('hello world');
|
||||||
|
assert.deepEqual(f.toString(), '<!--hello world-->');
|
||||||
|
assert.deepEqual(f.ev(), f);
|
||||||
|
assert.ok(f);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user