Sha256: f39986fa70b62e445ac9b9550fbe2373e1210f03c8465a6229717a3a474870c6
Contents?: true
Size: 1.23 KB
Versions: 141
Compression:
Stored size: 1.23 KB
Contents
var Squares = require('./difference-of-squares'); describe('Squares', function () { describe('up to 5', function () { var squares = new Squares(5); it('gets the square of sums', function () { expect(squares.squareOfSums).toBe(225); }); xit('gets the sum of squares', function () { expect(squares.sumOfSquares).toBe(55); }); xit('gets the difference', function () { expect(squares.difference).toBe(170); }); }); describe('up to 10', function () { var squares = new Squares(10); xit('gets the square of sums', function () { expect(squares.squareOfSums).toBe(3025); }); xit('gets the sum of squares', function () { expect(squares.sumOfSquares).toBe(385); }); xit('gets the difference', function () { expect(squares.difference).toBe(2640); }); }); describe('up to 100', function () { var squares = new Squares(100); xit('gets the square of sums', function () { expect(squares.squareOfSums).toBe(25502500); }); xit('gets the sum of squares', function () { expect(squares.sumOfSquares).toBe(338350); }); xit('gets the difference', function () { expect(squares.difference).toBe(25164150); }); }); });
Version data entries
141 entries across 141 versions & 1 rubygems