/*! * 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; }); });