(path: &Path)
| 413 | use crate::writer::{WalWriter, WalWriterConfig}; |
| 414 | |
| 415 | fn test_writer(path: &Path) -> WalWriter { |
| 416 | let config = WalWriterConfig { |
| 417 | use_direct_io: false, // Tests run without O_DIRECT. |
| 418 | ..Default::default() |
| 419 | }; |
| 420 | WalWriter::open(path, config).unwrap() |
| 421 | } |
| 422 | |
| 423 | #[test] |
| 424 | fn mmap_reader_basic() { |
no test coverage detected