()
| 64 | |
| 65 | |
| 66 | def test_build_url_label_set_for_bug(): |
| 67 | url = _build_feedback_url("x", "bug", {}) |
| 68 | params = _parse(url) |
| 69 | assert params["labels"] == "bug" |
| 70 | |
| 71 | |
| 72 | def test_build_url_label_mapped_for_feature(): |
nothing calls this directly
no test coverage detected