()
| 285 | |
| 286 | #[test] |
| 287 | fn builder_disable_ring() { |
| 288 | let mut builder = AccessibilityBuilder::new(); |
| 289 | builder.focusable().disable_ring(); |
| 290 | assert!(builder.config.focusable); |
| 291 | assert!(!builder.config.show_ring); |
| 292 | } |
| 293 | |
| 294 | #[test] |
| 295 | fn builder_focus_directions() { |
nothing calls this directly
no test coverage detected