| // Part of the Crubit project, under the Apache License v2.0 with LLVM | |
| // Exceptions. See /LICENSE for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| #[cfg(test)] | |
| mod tests { | |
| // TODO(mboehme): Disabled because absl::Duration cannot yet be imported. | |
| /* | |
| #[test] | |
| fn test_seconds() { | |
| use time::Seconds; | |
| use time::ToInt64Seconds; | |
| let d = Seconds(42); | |
| assert_eq!(ToInt64Seconds(d), 42); | |
| } | |
| */ | |
| } |