//! Integration tests.
//!
//! ```text
//! cargo test --test integration
//! ```
use clock;
/// This code needs to be copied into each crate.
/// Working version, for production.
pub type CurrentClock = Working;
/// Stopped version, for testing.
pub type CurrentClock = Stopped;