mirror of
https://github.com/tiffany352/rink-rs
synced 2024-11-10 13:44:15 +00:00
Another test for the date and comment parsers
This commit is contained in:
parent
2a19addc0b
commit
f07b33c56b
1 changed files with 21 additions and 1 deletions
|
@ -393,7 +393,7 @@ fn test_radix() {
|
|||
fn test_comments() {
|
||||
test("1 // *3", "1 (dimensionless)");
|
||||
test("1 + /*2*/ 3", "4 (dimensionless)");
|
||||
test("1 + /*2", "Expected `*/`, got EOF");
|
||||
test("1 + /*2", "Expected term, got <Expected `*/`, got EOF>");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -405,3 +405,23 @@ fn test_leading_dot() {
|
|||
fn test_underscores_in_number() {
|
||||
test("123_456\u{2009}789", "123456789 (dimensionless)");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_date_input() {
|
||||
let input = "#2018-10-04T09:13:25 +2:00#";
|
||||
let expected = "2018-10-04 11:13:25 +02:00";
|
||||
|
||||
let mut iter = text_query::TokenIterator::new(input.trim()).peekable();
|
||||
let expr = text_query::parse_query(&mut iter);
|
||||
CONTEXT.with(|ctx| {
|
||||
let res = ctx.eval_outer(&expr);
|
||||
let res = match res {
|
||||
Ok(v) => v.to_string(),
|
||||
Err(v) => v.to_string(),
|
||||
};
|
||||
assert!(
|
||||
res.starts_with(expected),
|
||||
format!("\n'{}' !=\n'{}'", res, expected)
|
||||
);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue