mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-13 06:43:01 +03:00
ignore import tests
This commit is contained in:
parent
bc7f4719c3
commit
39b8eda8cd
@ -1,6 +1,9 @@
|
||||
use crate::{integers::u32::output_one, parse_program};
|
||||
|
||||
// Import tests rely on knowledge of local directories. They should be run locally only.
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_basic() {
|
||||
let bytes = include_bytes!("basic.leo");
|
||||
let program = parse_program(bytes).unwrap();
|
||||
@ -9,6 +12,7 @@ fn test_basic() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_multiple() {
|
||||
let bytes = include_bytes!("multiple.leo");
|
||||
let program = parse_program(bytes).unwrap();
|
||||
@ -17,6 +21,7 @@ fn test_multiple() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_star() {
|
||||
let bytes = include_bytes!("star.leo");
|
||||
let program = parse_program(bytes).unwrap();
|
||||
@ -25,6 +30,7 @@ fn test_star() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn test_alias() {
|
||||
let bytes = include_bytes!("alias.leo");
|
||||
let program = parse_program(bytes).unwrap();
|
||||
|
Loading…
Reference in New Issue
Block a user