blob: 18339c214d4ba664dc34f373d138b13b60046c88 (
plain)
1
2
3
4
5
6
|
package.path = '../src/?.lua;' .. package.path
local tap = require 'tapered'
-- Test exit status with a failed test. Call `fail` and we're done!
tap.fail('not ok - No test: just fail')
tap.done()
|