muffy 0.3.12

The static website validator
Documentation
use super::Timer;
use tokio::time::Instant;

/// A wall-clock timer.
#[derive(Debug, Default)]
pub struct ClockTimer {}

impl ClockTimer {
    /// Creates a timer.
    pub const fn new() -> Self {
        Self {}
    }
}

impl Timer for ClockTimer {
    fn now(&self) -> Instant {
        Instant::now()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn timer() {
        let timer = ClockTimer::new();

        assert!(timer.now() <= Instant::now());
    }
}