this.MathSuite = {

  'Math.sqrt() should return the square root of a number': function(test) {
    test.equal(Math.sqrt(4), 2, 'It should return 2');
    test.expect(1);
    test.done();
  }

};