ganit-core 0.3.4

Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas
Documentation
use super::super::*;
use crate::types::{ErrorKind, Value};

#[test]
fn wrong_arity_no_args() {
    assert_eq!(lower_fn(&[]), Value::Error(ErrorKind::NA));
}

#[test]
fn wrong_arity_too_many() {
    assert_eq!(
        lower_fn(&[Value::Text("a".to_string()), Value::Text("b".to_string())]),
        Value::Error(ErrorKind::NA)
    );
}

#[test]
fn error_propagated() {
    assert_eq!(
        lower_fn(&[Value::Error(ErrorKind::Name)]),
        Value::Error(ErrorKind::Name)
    );
}