epiphany/node_modules/ends-with/test.js
2023-12-09 22:48:07 -08:00

42 lines
No EOL
1.4 KiB
JavaScript

/*!
* ends-with <https://github.com/jonschlinkert/ends-with>
*
* Copyright (c) 2014 Jon Schlinkert, contributors.
* Licensed under the MIT License
*/
'use strict';
var should = require('should');
var endsWith = require('./');
describe('endsWith', function () {
it('should be true if the string ends with the given pattern.', function () {
endsWith('a/b/c.txt', 'c.txt').should.be.true;
endsWith('a/b/c.txt', '.txt').should.be.true;
endsWith('abc', 'c').should.be.true;
});
it('should be false if the string does not end with the given pattern.', function () {
endsWith('a/b/c.txt', 'c.tx').should.be.false;
endsWith('a/b/c.txt', 'c.tt').should.be.false;
});
it('should be true if the array ends with the given string.', function () {
endsWith(['a', 'b', 'c'], 'c').should.be.true;
endsWith(['a', 'b', 'c.txt'], 'c.txt').should.be.true;
});
it('should be false if the array does not end with the given string.', function () {
endsWith(['a', 'b', 'c.txt'], '.txt').should.be.false;
endsWith(['a', 'b', 'c.txt'], 'c.tx').should.be.false;
endsWith(['a', 'b', 'c.txt'], 'c.tt').should.be.false;
endsWith(['abc', 'abc', 'abc'], 'c').should.be.false;
});
it('should be true if the array ends with the given number.', function () {
endsWith(['a', 'b', 42], 42).should.be.true;
endsWith(['a', 'b', 42], '42').should.be.false;
endsWith(['a', 'b', 42], 41).should.be.false;
});
});