vojaq_parser 0.1.1

Parser of the Vojaq file format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::vojaq_line::VojaqLine;
use super::assert_line;

#[test]
fn empty() {
    assert_line("", VojaqLine::Empty);
}

#[test]
fn space() {
    assert_line(" ", VojaqLine::Empty);
}

#[test]
fn lots_of_whitespace() {
    assert_line(" \u{A0} \u{2001}\t\t\u{3000}\u{2003} \t \u{85}", VojaqLine::Empty);
}