Releases: takahirom/robospec
Releases · takahirom/robospec
0.2.0
When we don't have an itShould
or describe
block in describe
block, describe
used to ignore the block because it didn't create any tests. However, this could lead to a common mistake. We address this by making it an error.
describeBehaviors<Unit>("TestClass") {
doIt {
}
// itShould("") {}
}
→ IllegalStateException("No itShould or describe block found for $name. Please add itShould or describe block, otherwise, it will not be executed.")
What's Changed
- [Docs] Add maven dependency to README by @takahirom in #3
- Make it an error when there is no "isShould" and "describe" block by @takahirom in #4
Full Changelog: 0.1.0...0.2.0
0.1.0
0.0.1
First release 🚀
https://github.com/takahirom/robospec
What's Changed
- Prepare for release by @takahirom in #1
New Contributors
- @takahirom made their first contribution in #1
Full Changelog: https://github.com/takahirom/robospec/commits/0.0.1