mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-26 11:06:00 +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 {
|
circuit Baz {
|
||||||
z: u32
|
z: u32
|
||||||
|
}
|
||||||
|
|
||||||
|
circuit Bazzar {
|
||||||
|
a: u32
|
||||||
}
|
}
|
@ -5,7 +5,7 @@ import test-import.( // local import
|
|||||||
|
|
||||||
import bar.( // imports directory import
|
import bar.( // imports directory import
|
||||||
Bar,
|
Bar,
|
||||||
baz.Baz,
|
baz.(Baz, Bazzar),
|
||||||
bat.bat.Bat,
|
bat.bat.Bat,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -17,6 +17,7 @@ function main() {
|
|||||||
|
|
||||||
const bar = Bar { r: 1u32 };
|
const bar = Bar { r: 1u32 };
|
||||||
const baz = Baz { z: 1u32 };
|
const baz = Baz { z: 1u32 };
|
||||||
|
const bazzar = Bazzar { a: 1u32 };
|
||||||
const bat = Bat { t: 1u32 };
|
const bat = Bat { t: 1u32 };
|
||||||
|
|
||||||
const car = Car { c: 1u32 };
|
const car = Car { c: 1u32 };
|
||||||
|
@ -132,7 +132,6 @@ fn test_names_fail_4() {
|
|||||||
|
|
||||||
// more complex tests
|
// more complex tests
|
||||||
#[test]
|
#[test]
|
||||||
#[ignore]
|
|
||||||
fn test_many_import() {
|
fn test_many_import() {
|
||||||
set_local_dir();
|
set_local_dir();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user