xrforge-v2/src/test/plugin_diskscan.lua

25 lines
585 B
Lua
Raw Normal View History

return function(lust)
local describe, it, expect = lust.describe, lust.it, lust.expect
describe('src/plugin/diskscan.lua', function()
lust.before(function() os.execute('test/env/demofiles.sh create') end)
lust.after(function() os.execute('test/env/demofiles.sh cleanup') end)
describe(' app vars', function() -- Can be nested
it('bindir', function()
print(app.bindir)
expect(app.bindir).to.fail('xrforge.com') -- Pass
end)
it('feature2', function()
expect(nil).to.exist() -- Fail
end)
end)
end)
end