()
| 7126 | |
| 7127 | #[test] |
| 7128 | fn batch_assert_maps_to_assert_action() { |
| 7129 | let step = batch_line_to_json_step("assert --value Ready").unwrap(); |
| 7130 | |
| 7131 | assert_eq!(step["action"], "assert"); |
| 7132 | assert_eq!(step["selector"]["value"], "Ready"); |
| 7133 | assert_eq!(step["timeoutMs"], 5000); |
| 7134 | } |
| 7135 | |
| 7136 | #[test] |
| 7137 | fn batch_assert_not_and_scroll_map_to_service_actions() { |
nothing calls this directly
no test coverage detected