Skip to content

Commit

Permalink
Merge branch 'main' into utils-test-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger authored May 16, 2024
2 parents ffe7c2a + d2d9cd1 commit 0526465
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 113 deletions.
96 changes: 48 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ tracing-subscriber = { version = "0.3", features = [
], optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
anyhow = { version = "1.0", optional = true }
cairo-lang-test-plugin = { version = "2.6.3", optional = true}
cairo-lang-runner = { version = "2.6.3", optional = true}
cairo-lang-test-plugin = { version = "2.6.3", optional = true }
cairo-lang-runner = { version = "2.6.3", optional = true }
colored = { version = "2.1.0", optional = true }
# needed to interface with cairo-lang-*
cairo-felt = { version = "0.9.1", optional = true }
Expand All @@ -88,6 +88,7 @@ sec1 = { version = "0.7.3", optional = true }
[dev-dependencies]
cairo-felt = "0.9.1"
cairo-lang-runner = "2.6.3"
cairo-lang-semantic = { version = "2.6.3", features = ["testing"] }
criterion = { version = "0.5.1", features = ["html_reports"] }
lambdaworks-math = "0.7"
pretty_assertions_sorted = "1.2.3"
Expand All @@ -96,7 +97,6 @@ rstest = "0.19.0"
test-case = "3.3"
walkdir = "2"
serde_json = { version = "1.0" }
cairo-lang-semantic = { version = "2.5.4", features = ["testing"] }

[build-dependencies]
cc = "1.0.95"
Expand Down
3 changes: 0 additions & 3 deletions cairo-tests/src/print_test.cairo
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use core::byte_array::BYTE_ARRAY_MAGIC;
use core::debug::{PrintTrait, print_byte_array_as_string};

#[ignore]
#[test]
fn test_prints() {
// Valid short string.
Expand Down Expand Up @@ -102,7 +101,6 @@ fn test_prints() {
x.print();
}

#[ignore]
#[test]
fn test_print_macro() {
// With a ByteArray.
Expand All @@ -116,7 +114,6 @@ fn test_print_macro() {
print!("{}", 97_usize);
}

#[ignore]
#[test]
fn test_println_macro() {
// With a ByteArray.
Expand Down
Loading

0 comments on commit 0526465

Please sign in to comment.