forked from noir-lang/noir
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix should_fail_with (noir-lang#2940)
- Loading branch information
1 parent
72ef0f1
commit 0d0b854
Showing
8 changed files
with
118 additions
and
1 deletion.
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
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
7 changes: 7 additions & 0 deletions
7
tooling/nargo_cli/tests/noir_test_failure/should_fail_mismatch/Nargo.toml
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,7 @@ | ||
[package] | ||
name = "should_fail_with_mismatch" | ||
type = "bin" | ||
authors = [""] | ||
compiler_version = "0.1" | ||
|
||
[dependencies] |
Empty file.
11 changes: 11 additions & 0 deletions
11
tooling/nargo_cli/tests/noir_test_failure/should_fail_mismatch/src/main.nr
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,11 @@ | ||
|
||
#[test(should_fail_with = "Not equal")] | ||
fn test_main_1() { | ||
assert_eq(0, 1, "Different string"); | ||
} | ||
|
||
// The assert message has a space | ||
#[test(should_fail_with = "Not equal")] | ||
fn test_main_1() { | ||
assert_eq(0, 1, "Not equal "); | ||
} |
7 changes: 7 additions & 0 deletions
7
tooling/nargo_cli/tests/noir_test_success/should_fail_with_matches/Nargo.toml
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,7 @@ | ||
[package] | ||
name = "should_fail_with_match" | ||
type = "bin" | ||
authors = [""] | ||
compiler_version = "0.1" | ||
|
||
[dependencies] |
Empty file.
5 changes: 5 additions & 0 deletions
5
tooling/nargo_cli/tests/noir_test_success/should_fail_with_matches/src/main.nr
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,5 @@ | ||
|
||
#[test(should_fail_with = "Not equal")] | ||
fn test_main_1() { | ||
assert_eq(0, 1, "Not equal"); | ||
} |