From 35da223922f24974c8d087c5f5dae1929fd16e36 Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Sun, 5 Jun 2022 11:47:04 +0200 Subject: [PATCH] Remove unused files --- .gitignore | 1 + Sources/Push-API/Push_API.swift | 6 ------ Tests/Push-APITests/Push_APITests.swift | 11 ----------- 3 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 Sources/Push-API/Push_API.swift delete mode 100644 Tests/Push-APITests/Push_APITests.swift diff --git a/.gitignore b/.gitignore index 3b29812..5922fda 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ DerivedData/ .swiftpm/config/registries.json .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata .netrc +Package.resolved diff --git a/Sources/Push-API/Push_API.swift b/Sources/Push-API/Push_API.swift deleted file mode 100644 index 10d5187..0000000 --- a/Sources/Push-API/Push_API.swift +++ /dev/null @@ -1,6 +0,0 @@ -public struct Push_API { - public private(set) var text = "Hello, World!" - - public init() { - } -} diff --git a/Tests/Push-APITests/Push_APITests.swift b/Tests/Push-APITests/Push_APITests.swift deleted file mode 100644 index 0d4a15d..0000000 --- a/Tests/Push-APITests/Push_APITests.swift +++ /dev/null @@ -1,11 +0,0 @@ -import XCTest -@testable import Push_API - -final class Push_APITests: 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(Push_API().text, "Hello, World!") - } -}