test_test2.lua 256 B

1234567891011121314
  1. local lunit = require('lunitx')
  2. local cURL = require("cURL")
  3. _ENV = lunit.module('simple','seeall')
  4. function test_success_again()
  5. assert_true (true, 'more tests work')
  6. end
  7. function test_fail()
  8. assert_true ("not something true", 'fail test')
  9. end