Skip to content

Commit

Permalink
Ignore ASCII size assertions by default
Browse files Browse the repository at this point in the history
  • Loading branch information
spenserblack committed Sep 4, 2020
1 parent fc3d8a1 commit 152678c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ macro_rules! define_languages {
$(
paste! {
#[test]
#[ignore]
fn [<$name:lower _width>] () {
const ASCII: &str = include_str!(concat!("../resources/", $ascii));

Expand All @@ -88,6 +89,7 @@ macro_rules! define_languages {
}

#[test]
#[ignore]
fn [<$name:lower _height>] () {
const ASCII: &str = include_str!(concat!("../resources/", $ascii));
assert_le!(ASCII.lines().count(), MAX_HEIGHT, concat!($ascii, " is too tall."));
Expand Down

0 comments on commit 152678c

Please sign in to comment.