Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekun Wang committed Jun 20, 2024
1 parent 27c094f commit 28e99fb
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "test"
version = "1.0.0"
authors = []

[addresses]
A = "0x42"

[dependencies]
deps = { local = "./deps_only" }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exiting with checking errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "deps"
version = "1.0.0"
authors = []

[addresses]
B = "0x42"
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module B::B {
public(package) fun foo() {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module A::A {
use B::B;

fun foo() {
B::foo();
}
}

0 comments on commit 28e99fb

Please sign in to comment.