upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-02-13 10:29:16 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-02-13 12:31:48 +0000
commitd6b955104f4a04dcbe7324e9a861642f4654894f (patch)
tree01d6aeb07992780715b8c49bd1417953302e913b /tests
parentf4e8e1089ae6e8e78c3576246d9747bb585fdc18 (diff)
refactor(grasp-audit): clarify PR purgatory test names and intent
- Remove redundant test_pr_event_remains_in_purgatory_until_git_data - Rename test_pr_event_git_push_accepted -> test_pr_event_in_purgatory_git_push_accepted - Add PASS/FAIL meaning to each test's documentation - Note black-box testing limitation for purgatory detection
Diffstat (limited to 'tests')
-rw-r--r--tests/purgatory.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/purgatory.rs b/tests/purgatory.rs
index f124b7c..e99540b 100644
--- a/tests/purgatory.rs
+++ b/tests/purgatory.rs
@@ -77,7 +77,6 @@ isolated_purgatory_test!(test_state_event_served_after_git_push);
77// PR Purgatory Tests 77// PR Purgatory Tests
78// ============================================================ 78// ============================================================
79 79
80isolated_purgatory_test!(test_pr_event_before_git_data_accepted_into_purgatory); 80isolated_purgatory_test!(test_pr_event_accepted_into_purgatory_and_isnt_served);
81isolated_purgatory_test!(test_pr_event_remains_in_purgatory_until_git_data); 81isolated_purgatory_test!(test_pr_event_in_purgatory_git_push_accepted);
82isolated_purgatory_test!(test_pr_event_git_push_accepted);
83isolated_purgatory_test!(test_pr_event_served_after_git_push); 82isolated_purgatory_test!(test_pr_event_served_after_git_push);