basic_spec.lua 230 B

12345678910
  1. require("cURL")
  2. describe("civetweb basic", function()
  3. it("should serve a simple get request", function()
  4. assert.is_true(true)
  5. end)
  6. it("should fail the build on a failed test", function()
  7. assert.is_false(true)
  8. end)
  9. end)