()
| 55 | assert get_parse_cli("\"services/customer.services.js\"") == ["services/customer.services.js"] |
| 56 | |
| 57 | def test_parser_cli_multi(): |
| 58 | assert set(get_parse_cli("href=\"http://example.com\";href=\"/api/create.php\"")) == set(["http://example.com", "/api/create.php"]) |
| 59 | |
| 60 | def test_parser_unique(): |
| 61 | ''' |
nothing calls this directly
no test coverage detected