busted icon indicating copy to clipboard operation
busted copied to clipboard

Elegant Lua unit testing.

Results 81 busted issues
Sort by recently updated
recently updated
newest added

Hello everybody, I have a problem with running multiple tests via busted. I have 3 simple test scripts: - test_script_1_spec: ``` describe("Test script 1", function() setup(function() print("\nSetup function for Test...

This change allows helpers to extend busted functionality by exposing its internals. That's the only way I found to add new blocks, happy to discuss alternatives. See [eskerda/busted-flaky](https://github.com/eskerda/busted-flaky) for an...

I want to use busted in ios lua project. Now I can run busted like this ``` --unitTest.lua require 'busted.runner'() describe("Busted unit testing framework", function() -- body describe("should be awesome",...

The following code reports an error, it prompted that this parameter list does not match, but this information is too little, I think it should output the expected parameter list...

When I debug Lua code, it can be debugged normally. When the code stops at a breakpoint, if I do nothing for a long time, the following error will be...

Fixes #643 Before anything else, this fixes what seems to be an unrelated bug in the loaded table state isolation. The current package loaded state table save/restore functions were only...

See also: https://github.com/lunarmodules/Penlight/issues/363 I recently had the bright idea of using Busted as our test framework for the Penlight project. This seemed to go well at first, until I managed...

The current TAP emitter is missing out on features that are available with TAP version 13. Also, the Node.js tap team is pushing TAP to some pretty cool places. Complying...

enhancement

As a user new to both Lua and Busted I would like documentation to cover more basic setup and use; having examples hat does not assume I am familiar with...

http://olivinelabs.com/busted/ has this section: ``` Pending Pending functions are placeholders for tests you plan to write (or fix) later. describe("busted pending tests", function() pending("I should finish this test later") end)...