mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-26 02:53:08 +03:00
unignore test and add test case to thoroughly test
This commit is contained in:
parent
9d881fd2a4
commit
59acb1a022
@ -1,3 +1,7 @@
|
||||
circuit Baz {
|
||||
z: u32
|
||||
}
|
||||
|
||||
circuit Bazzar {
|
||||
a: u32
|
||||
}
|
@ -5,7 +5,7 @@ import test-import.( // local import
|
||||
|
||||
import bar.( // imports directory import
|
||||
Bar,
|
||||
baz.Baz,
|
||||
baz.(Baz, Bazzar),
|
||||
bat.bat.Bat,
|
||||
);
|
||||
|
||||
@ -17,6 +17,7 @@ function main() {
|
||||
|
||||
const bar = Bar { r: 1u32 };
|
||||
const baz = Baz { z: 1u32 };
|
||||
const bazzar = Bazzar { a: 1u32 };
|
||||
const bat = Bat { t: 1u32 };
|
||||
|
||||
const car = Car { c: 1u32 };
|
||||
|
@ -132,7 +132,6 @@ fn test_names_fail_4() {
|
||||
|
||||
// more complex tests
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_many_import() {
|
||||
set_local_dir();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user