Sha256: b51ff8ece96e9f74ebe519ff36ae89ca86ce86334b123351cdea601d781beeb2
Contents?: true
Size: 497 Bytes
Versions: 101
Compression:
Stored size: 497 Bytes
Contents
local hello_world = require('hello-world') describe('hello-world', function() it('says hello world with no name', function() local result = hello_world.hello() assert.are.equal('Hello, world!', result) end) it('says hello to Bob', function() local result = hello_world.hello('Bob') assert.are.equal('Hello, Bob!', result) end) it('says hello to Sally', function() local result = hello_world.hello('Sally') assert.are.equal('Hello, Sally!', result) end) end)
Version data entries
101 entries across 101 versions & 1 rubygems