describe('g.strendwith(): Check that a string ends with a certain suffix (case-sensitive)'
, function() {

    it("Check that 'file.txt' ends with '.txt'", function() {
        g.strendswith('file.txt', '.txt').should.equal(true).and.be.a.Boolean;