File: tap.lua

package info (click to toggle)
lua-zlib 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 204 kB
  • sloc: ansic: 905; makefile: 44
file content (24 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local tap_module = {}

local os = require("os")

local counter = 1
local failed  = false

function tap_module.ok(assert_true, desc)
   local msg = ( assert_true and "ok " or "not ok " ) .. counter
   if ( not assert_true ) then
      failed = true
   end
   if ( desc ) then
      msg = msg .. " - " .. desc
   end
   print(msg)
   counter = counter + 1
end

function tap_module.exit()
   os.exit(failed and 1 or 0)
end

return tap_module