lunarmodules/busted

describe message doesn't get printed

kollol-chowdhury-incontact opened this issue · 2 comments

When I run the below code,it doesn't print any message(some assertions/tests positive assertions/tests negative assertions) ,if the test is successful. Incase of failure, it prints the message

describe("some assertions", function()
  it("tests positive assertions", function()
    assert.is_true(true)  -- Lua keyword chained with _
    assert.True(true)     -- Lua keyword using a capital
    assert.are.equal(1, 1)
    assert.has.errors(function() error("this should fail") end)
  end)

  it("tests negative assertions", function()
    assert.is_not_true(false)
    assert.are_not.equals(1, "1")
    assert.has_no.errors(function() end)
  end)
end)

It depends on the outputter used. The --output=xxx option (or -o).

I typically run my tests as busted -v -o gtest

Thanks a lot..it helped