From e1a03e5ba3d755123a371b96447e0d2d584cebb7 Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Wed, 29 Jul 2026 07:09:03 +0200 Subject: [PATCH] feat(assert): bashunit::assert_once makes a composed assertion report once A custom assertion built out of built-in assertions counts one assertion per inner step, and its failure names that step rather than the check the test author wrote. `assert_http_success` composed from two comparisons reported 2 assertions per call and failed with "Expected '500' to be less than '300'". Add an opt-in marker: `bashunit::assert_once