()
| 235 | |
| 236 | #[test] |
| 237 | fn test_turn_changes_accessible() { |
| 238 | let changes = |
| 239 | TurnChanges::new().with_modified(vec![std::path::PathBuf::from("src/main.rs")]); |
| 240 | assert_eq!(changes.file_count(), 1); |
| 241 | assert!(!changes.is_empty()); |
| 242 | } |
| 243 | |
| 244 | #[test] |
| 245 | fn test_state_machine_accessible() { |
nothing calls this directly
no test coverage detected