-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: error message format in like() assertion
- Loading branch information
1 parent
94b42d7
commit 3765c84
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
rockspec_format = "3.0" | ||
package = "bustez" | ||
version = "0.1.3-1" | ||
source = { | ||
url = "git+https://github.com/goldenstein64/bustez.git", | ||
tag = "v0.1.3", | ||
dir = "bustez", | ||
} | ||
description = { | ||
summary = "TestEZ injected into Busted", | ||
detailed = [[ | ||
BustEZ injects Roblox's TestEZ syntax into the Busted library by | ||
registering new assertions and modifiers and introducing an alternative | ||
function to assert. | ||
]], | ||
homepage = "https://github.com/goldenstein64/bustez", | ||
license = "MIT", | ||
issues_url = "https://github.com/goldenstein64/bustez/issues", | ||
} | ||
dependencies = { | ||
"lua >= 5.1", | ||
"luassert ~> 1.9", | ||
"say ~> 1.4", | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["bustez.expect"] = "src/bustez/expect.lua", | ||
["bustez.init"] = "src/bustez/init.lua", | ||
["bustez.register"] = "src/bustez/register.lua", | ||
["luassert.bustez.expect"] = "src/luassert/bustez/expect.lua", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters