aboutsummaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'Tests')
-rw-r--r--Tests/PatternsTests/DummyTest.swift9
-rw-r--r--Tests/PatternsTests/PatternsTests.swift11
2 files changed, 9 insertions, 11 deletions
diff --git a/Tests/PatternsTests/DummyTest.swift b/Tests/PatternsTests/DummyTest.swift
new file mode 100644
index 0000000..badad26
--- /dev/null
+++ b/Tests/PatternsTests/DummyTest.swift
@@ -0,0 +1,9 @@
+import XCTest
+@testable import Patterns
+
+final class PatternTests: XCTestCase {
+ func testExample() throws {
+ // Should update when I figure out how to best test SwiftUI views
+ XCTAssertEqual(true, true)
+ }
+}
diff --git a/Tests/PatternsTests/PatternsTests.swift b/Tests/PatternsTests/PatternsTests.swift
deleted file mode 100644
index d45a6f7..0000000
--- a/Tests/PatternsTests/PatternsTests.swift
+++ /dev/null
@@ -1,11 +0,0 @@
-import XCTest
-@testable import Patterns
-
-final class PatternsTests: XCTestCase {
- func testExample() throws {
- // This is an example of a functional test case.
- // Use XCTAssert and related functions to verify your tests produce the correct
- // results.
- XCTAssertEqual(Patterns().text, "Hello, World!")
- }
-}