From 01e68638f91dad15c5e0e5bd14504b4693a85522 Mon Sep 17 00:00:00 2001 From: Austin Bennett Date: Thu, 23 Jul 2026 12:18:54 -0500 Subject: [PATCH] TEMPORARY: prove a failing test blocks the image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Will be reverted in the next commit. Verifying the gate rather than assuming it — the last assumption of this kind was wrong for months. --- .../java/com/itsthevine/web/GateProbeTest.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/test/java/com/itsthevine/web/GateProbeTest.java diff --git a/src/test/java/com/itsthevine/web/GateProbeTest.java b/src/test/java/com/itsthevine/web/GateProbeTest.java new file mode 100644 index 0000000..a6b9440 --- /dev/null +++ b/src/test/java/com/itsthevine/web/GateProbeTest.java @@ -0,0 +1,14 @@ +package com.itsthevine.web; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.jupiter.api.Test; + +/** TEMPORARY: proves a failing test actually stops the image being published. Removed immediately. */ +class GateProbeTest { + + @Test + void deliberatelyFails() { + assertThat("the gate").isEqualTo("proved"); + } +}