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