-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve p/uassert
and p/urequire
#2481
Labels
🗺️good first issue🗺️
Ideal for newcomer contributors
hacktoberfest
This might be a good issue for a hacktoberfest participant to handle.
help wanted
Want to contribute? We recommend these issues.
Milestone
Comments
7 tasks
I've developed a part of testify assert in gno that would complete |
You can definitely open up a PR against |
I just made a PR to add more functions to the |
moul
pushed a commit
that referenced
this issue
Jul 14, 2024
… packages (#2491) Related with #2481 This PR handles the following tasks: 1. Adds `NotEqual()` and `NotEmpty()` functions to the `p/demo/uassert` and `p/demo/ urequire` packages (including unit tests) 2. Uses `p/demo/uassert` and `p/demo/urequire` packages for writing unit tests for some demo packages at `examples/p/demo` 3. Todo : Do the same things with `examples/r/demo` (done) <!-- please provide a detailed description of the changes made in this pull request. --> <details><summary>Contributors' checklist...</summary> - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details>
gfanton
pushed a commit
to gfanton/gno
that referenced
this issue
Jul 23, 2024
… packages (gnolang#2491) Related with gnolang#2481 This PR handles the following tasks: 1. Adds `NotEqual()` and `NotEmpty()` functions to the `p/demo/uassert` and `p/demo/ urequire` packages (including unit tests) 2. Uses `p/demo/uassert` and `p/demo/urequire` packages for writing unit tests for some demo packages at `examples/p/demo` 3. Todo : Do the same things with `examples/r/demo` (done) <!-- please provide a detailed description of the changes made in this pull request. --> <details><summary>Contributors' checklist...</summary> - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details>
deelawn
added a commit
that referenced
this issue
Jul 23, 2024
# Description Implement the [myers algorithm](https://blog.jcoglan.com/2017/02/12/the-myers-diff-algorithm-part-1/) to show the difference between two strings. related with #2481 simple demo https://play.gno.land/p/Veoxvg1xwUb --------- Co-authored-by: Marc Vertes <[email protected]> Co-authored-by: deelawn <[email protected]>
wyhaines
added
the
hacktoberfest
This might be a good issue for a hacktoberfest participant to handle.
label
Sep 30, 2024
Kouteki
added
help wanted
Want to contribute? We recommend these issues.
and removed
help wanted
labels
Oct 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
🗺️good first issue🗺️
Ideal for newcomer contributors
hacktoberfest
This might be a good issue for a hacktoberfest participant to handle.
help wanted
Want to contribute? We recommend these issues.
Opening this "good first issue" for anyone who wants to improve
uassert
andurequire
. There are basically three ways to do it:examples/
packages to useuassert
andurequire
.Edit:
gno test
andstdlibs/testing
functionality to display more information, such as line and column numbers, for better debugging. Or support the use ofSprintf()
for structs with private fields, which is currently blocked for security concerns (in production), but could be beneficial for testing purposes.The text was updated successfully, but these errors were encountered: