2017-01-13 11:27:19 -05:00
|
|
|
require('~/lib/utils/text_utility');
|
2016-12-14 15:37:17 -05:00
|
|
|
|
|
|
|
(() => {
|
|
|
|
describe('text_utility', () => {
|
|
|
|
describe('gl.text.getTextWidth', () => {
|
|
|
|
it('returns zero width when no text is passed', () => {
|
|
|
|
expect(gl.text.getTextWidth('')).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns zero width when no text is passed and font is passed', () => {
|
|
|
|
expect(gl.text.getTextWidth('', '100px sans-serif')).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns width when text is passed', () => {
|
|
|
|
expect(gl.text.getTextWidth('foo') > 0).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns bigger width when font is larger', () => {
|
|
|
|
const largeFont = gl.text.getTextWidth('foo', '100px sans-serif');
|
|
|
|
const regular = gl.text.getTextWidth('foo', '10px sans-serif');
|
|
|
|
expect(largeFont > regular).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
2017-02-01 10:23:01 -05:00
|
|
|
|
|
|
|
describe('gl.text.pluralize', () => {
|
|
|
|
it('returns pluralized', () => {
|
|
|
|
expect(gl.text.pluralize('test', 2)).toBe('tests');
|
|
|
|
});
|
|
|
|
|
2017-02-01 13:42:47 -05:00
|
|
|
it('returns pluralized when count is 0', () => {
|
2017-02-01 10:23:01 -05:00
|
|
|
expect(gl.text.pluralize('test', 0)).toBe('tests');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not return pluralized', () => {
|
|
|
|
expect(gl.text.pluralize('test', 1)).toBe('test');
|
|
|
|
});
|
|
|
|
});
|
2016-12-14 15:37:17 -05:00
|
|
|
});
|
|
|
|
})();
|