()
| 127 | |
| 128 | #[test] |
| 129 | fn test_extract_propline_rem_mixed_case() { |
| 130 | let propline = |
| 131 | do_extract("#!/usr/bin/env endbasic\nReM endbasic cli: console=sdl:fs\n").unwrap(); |
| 132 | assert_eq!(Some("sdl:fs".to_owned()), propline.console_spec); |
| 133 | } |
| 134 | |
| 135 | #[test] |
| 136 | fn test_extract_propline_ignores_unrelated_comment() { |
nothing calls this directly
no test coverage detected