use super::super::*;
use crate::types::Value;
const MIN_SERIAL: f64 = 45292.0;
#[test]
fn returns_a_number() {
assert!(matches!(today_fn(&[]), Value::Date(_)));
}
#[test]
fn result_is_after_2024_jan_01() {
if let Value::Date(n) = today_fn(&[]) {
assert!(n >= MIN_SERIAL, "today serial {n} should be >= {MIN_SERIAL}");
} else {
panic!("expected Date");
}
}
#[test]
fn result_has_no_fractional_part() {
if let Value::Date(n) = today_fn(&[]) {
assert_eq!(n.fract(), 0.0, "TODAY() should be a whole number, got {n}");
} else {
panic!("expected Date");
}
}