|
29 | 29 | "get_published_at": False,
|
30 | 30 | "get_skip_release_notes_label": "skip",
|
31 | 31 | "get_print_empty_chapters": True,
|
32 |
| - "get_chapters_to_pr_without_issue": False, |
33 | 32 | "get_verbose": True,
|
34 | 33 | }
|
35 | 34 |
|
|
42 | 41 | ("get_published_at", "not_bool", "Published at must be a boolean."),
|
43 | 42 | ("get_skip_release_notes_label", "", "Skip release notes label must be a non-empty string."),
|
44 | 43 | ("get_print_empty_chapters", "not_bool", "Print empty chapters must be a boolean."),
|
45 |
| - ("get_chapters_to_pr_without_issue", "not_bool", "Chapters to PR without issue must be a boolean."), |
46 | 44 | ("get_verbose", "not_bool", "Verbose logging must be a boolean."),
|
47 | 45 | ("get_duplicity_icon", "", "Duplicity icon must be a non-empty string and have a length of 1."),
|
48 | 46 | ("get_duplicity_icon", "Oj", "Duplicity icon must be a non-empty string and have a length of 1."),
|
@@ -129,11 +127,6 @@ def test_get_print_empty_chapters(mocker):
|
129 | 127 | assert ActionInputs.get_print_empty_chapters() is True
|
130 | 128 |
|
131 | 129 |
|
132 |
| -def test_get_chapters_to_pr_without_issue(mocker): |
133 |
| - mocker.patch("release_notes_generator.action_inputs.get_action_input", return_value="false") |
134 |
| - assert ActionInputs.get_chapters_to_pr_without_issue() is False |
135 |
| - |
136 |
| - |
137 | 130 | def test_get_verbose_verbose_by_action_input(mocker):
|
138 | 131 | mocker.patch("release_notes_generator.action_inputs.get_action_input", return_value="true")
|
139 | 132 | mocker.patch("os.getenv", return_value=0)
|
|
0 commit comments