File: interface_spec.lua

package info (click to toggle)
lua-busted 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 820 kB
  • sloc: sh: 198; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
describe('does a describe', function()
  for i = 1, 1000 do
    it('does 1000 its', function()
      assert(true)
    end)
  end
end)