ganit-core 0.1.6

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!(len_fn(&[]), Value::Error(ErrorKind::NA));
}

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

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