()
| 120 | |
| 121 | #[test] |
| 122 | fn test_extract_propline_apostrophe() { |
| 123 | let propline = |
| 124 | do_extract("#!/usr/bin/env endbasic\n' endbasic cli: console=sdl\nPRINT 1\n").unwrap(); |
| 125 | assert_eq!(Some("sdl".to_owned()), propline.console_spec); |
| 126 | } |
| 127 | |
| 128 | #[test] |
| 129 | fn test_extract_propline_rem_mixed_case() { |
nothing calls this directly
no test coverage detected