testez
testez copied to clipboard
BDD-style test and assertion library for Roblox Lua
This updates the readme and docs to provide a little more context on how to actually use TestEZ
Bumps [xml-rs](https://github.com/kornelski/xml-rs) from 0.8.0 to 0.8.14. Changelog Sourced from xml-rs's changelog. Version 0.8.7 Basic parsing of DTD internal subset Speed improvements Version 0.8.6 Fixed parsing of incorrectly nested comments and...
This addresses issue 33, the lack of `greater.than`, and `less.than`.
```lua return function() describe("Vector3", function() it("should be near to itself", function() expect(Vector3.new(1, 2, 3)).to.be.near(Vector3.new(1, 2, 3)) --"Expecation value must be a number to use 'near'" end) end) end ``` `near`...
Currently too unnatural to read: ``` expect(x > 0).to.equal(true) ```
I want to write unit tests, not integration tests. If one part of my code breaks, I don't want everything else to break with it. Thus, I write a mock/stub/shim...
Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.0.1 to 1.1.4. Commits 4a54e57 Bump version to 1.1.4 ebf8b45 Merge pull request #34 from ibraheemdev/patch-1 3d69afa Fix memory ordering in RawIter::next c7d8dcd Bump version to 1.1.3...
Bumps [regex](https://github.com/rust-lang/regex) from 1.3.3 to 1.5.6. Changelog Sourced from regex's changelog. 1.5.6 (2022-05-20) This release includes a few bug fixes, including a bug that produced incorrect matches when a non-greedy...
This is definitely a bug. I'm writing unit tests for my math interpreter and when attempting the following test it fails: ```lua local lexer = Lexer.new('4.2 - 3.8') lexer:tokenize() local...
Previously the documentation stated that these methods only took a phrase as a parameter even though they take a phrase and a callback.