diff --git a/nselib/unittest.lua b/nselib/unittest.lua index 77dd403d1..c686c1fba 100644 --- a/nselib/unittest.lua +++ b/nselib/unittest.lua @@ -7,9 +7,11 @@ -- unittest.TestSuite class has this property, and tests can be -- added with add_test. Example: -- +-- -- local data = {"foo", "bar", "baz"} -- test_suite = unittest.TestSuite:new() -- test_suite:add_test(equal(data[2], "bar"), "data[2] should equal 'bar'") +-- -- -- The library is driven by the unittest NSE script. --