summaryrefslogtreecommitdiff
path: root/Hutch/HutchTests
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-03-22 20:44:31 -0500
committerChristian Cleberg <[email protected]>2026-03-22 20:44:31 -0500
commitb81657586244299fc9fe78e4f27ca1c8bca07060 (patch)
treedfbdeaddfb39a1c209b1a5d2a43e92ed711d1901 /Hutch/HutchTests
parent00ea78ba335817bb7ec1bcae64169fa1e924cb97 (diff)
downloadhutch-b81657586244299fc9fe78e4f27ca1c8bca07060.tar.gz
hutch-b81657586244299fc9fe78e4f27ca1c8bca07060.tar.bz2
hutch-b81657586244299fc9fe78e4f27ca1c8bca07060.zip
delete extraneous test files
Diffstat (limited to 'Hutch/HutchTests')
-rw-r--r--Hutch/HutchTests/AppStateTests.swift25
1 files changed, 0 insertions, 25 deletions
diff --git a/Hutch/HutchTests/AppStateTests.swift b/Hutch/HutchTests/AppStateTests.swift
deleted file mode 100644
index ca34df2..0000000
--- a/Hutch/HutchTests/AppStateTests.swift
+++ /dev/null
@@ -1,25 +0,0 @@
-import Testing
-@testable import Hutch
-
-struct AppStateTests {
-
- @Test
- @MainActor
- func presentRepositoryDeepLinkErrorSetsUserFacingMessage() {
- let appState = AppState()
-
- appState.presentRepositoryDeepLinkError()
-
- #expect(appState.deepLinkError == "The repository could not be found or is inaccessible.")
- }
-
- @Test
- @MainActor
- func presentTicketDeepLinkErrorSetsUserFacingMessage() {
- let appState = AppState()
-
- appState.presentTicketDeepLinkError()
-
- #expect(appState.deepLinkError == "The ticket could not be found or is inaccessible.")
- }
-}