File: cl_two_failures.lua

package info (click to toggle)
lua-busted 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 820 kB
  • sloc: sh: 198; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- supporting testfile; belongs to 'cl_spec.lua'

describe('Runs 2 failing tests', function()

  it('is failing test 1 #err1', function()
    assert(false, 'failed on test 1')
  end)

  it('is failing test 2 #err2', function()
    assert(false, 'failed on test 2')
  end)
end)