ignore import tests

This commit is contained in:
collin 2020-06-08 19:31:29 -07:00
parent bc7f4719c3
commit 39b8eda8cd

View File

@ -1,6 +1,9 @@
use crate::{integers::u32::output_one, parse_program}; use crate::{integers::u32::output_one, parse_program};
// Import tests rely on knowledge of local directories. They should be run locally only.
#[test] #[test]
#[ignore]
fn test_basic() { fn test_basic() {
let bytes = include_bytes!("basic.leo"); let bytes = include_bytes!("basic.leo");
let program = parse_program(bytes).unwrap(); let program = parse_program(bytes).unwrap();
@ -9,6 +12,7 @@ fn test_basic() {
} }
#[test] #[test]
#[ignore]
fn test_multiple() { fn test_multiple() {
let bytes = include_bytes!("multiple.leo"); let bytes = include_bytes!("multiple.leo");
let program = parse_program(bytes).unwrap(); let program = parse_program(bytes).unwrap();
@ -17,6 +21,7 @@ fn test_multiple() {
} }
#[test] #[test]
#[ignore]
fn test_star() { fn test_star() {
let bytes = include_bytes!("star.leo"); let bytes = include_bytes!("star.leo");
let program = parse_program(bytes).unwrap(); let program = parse_program(bytes).unwrap();
@ -25,6 +30,7 @@ fn test_star() {
} }
#[test] #[test]
#[ignore]
fn test_alias() { fn test_alias() {
let bytes = include_bytes!("alias.leo"); let bytes = include_bytes!("alias.leo");
let program = parse_program(bytes).unwrap(); let program = parse_program(bytes).unwrap();