File: cl_lua_path.lua

package info (click to toggle)
lua-busted 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 820 kB
  • sloc: sh: 198; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
-- supporting testfile; belongs to 'cl_spec.lua'

describe('Tests --lpath prepends to package.path', function()
  it('require test module', function()
    local mod = require('cl_test_module')
    assert.is_equal('test module', mod)
  end)
end)