Sha256: d2501683307d7f199c676503b44a3783730e1fc87c3b1156178ae7935dd227dd
Contents?: true
Size: 390 Bytes
Versions: 295
Compression:
Stored size: 390 Bytes
Contents
-- Require the hello-world module local hello_world = require('hello-world') -- Define a module named hello-world. This module should return a single -- function named hello that takes no arguments and returns a string. describe('hello-world', function() it('says hello world', function() local result = hello_world.hello() assert.are.equal('Hello, World!', result) end) end)
Version data entries
295 entries across 295 versions & 1 rubygems