Sha256: e59a2cf3f87c2abe9e88bf500552bed3a797d07dca38668ee7c9e955320cf719
Contents?: true
Size: 459 Bytes
Versions: 203
Compression:
Stored size: 459 Bytes
Contents
var HelloWorld = require('./hello-world'); describe('Hello World', function() { var helloWorld = new HelloWorld(); it('says hello world with no name', function() { expect(helloWorld.hello('')).toEqual('Hello, World!'); }); xit('says hello to bob', function() { expect(helloWorld.hello('Bob')).toEqual('Hello, Bob!'); }); xit('says hello to sally', function() { expect(helloWorld.hello('Sally')).toEqual('Hello, Sally!'); }); });
Version data entries
203 entries across 203 versions & 1 rubygems