summaryrefslogtreecommitdiff
path: root/Hutch/HutchTests/AppStateTests.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/HutchTests/AppStateTests.swift')
-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.")
- }
-}