Compare commits
1 Commits
3a7b57d10e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d164c34f3 |
@@ -4,11 +4,11 @@ import PackageDescription
|
|||||||
let package = Package(
|
let package = Package(
|
||||||
name: "swiftpm-pathkit",
|
name: "swiftpm-pathkit",
|
||||||
products: [
|
products: [
|
||||||
.library(name: "Path", targets: ["Path"]),
|
.library(name: "PathKit", targets: ["PathKit"]),
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
.target(name: "Path", path: "Sources"),
|
.target(name: "PathKit", path: "Sources"),
|
||||||
.testTarget(name: "PathTests", dependencies: ["Path"]),
|
.testTarget(name: "PathTests", dependencies: ["PathKit"]),
|
||||||
],
|
],
|
||||||
swiftLanguageVersions: [.v4, .v4_2, .version("5")]
|
swiftLanguageVersions: [.v4, .v4_2, .version("5")]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ results.
|
|||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
```swift
|
```swift
|
||||||
import Path
|
import PathKit
|
||||||
|
|
||||||
// convenient static members
|
// convenient static members
|
||||||
let home = Path.home
|
let home = Path.home
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import XCTest
|
import XCTest
|
||||||
import Path
|
import PathKit
|
||||||
|
|
||||||
extension PathTests {
|
extension PathTests {
|
||||||
func testFindMaxDepth1() throws {
|
func testFindMaxDepth1() throws {
|
||||||
@@ -148,7 +148,7 @@ extension PathTests {
|
|||||||
Set(tmpdir.find().hidden(true)),
|
Set(tmpdir.find().hidden(true)),
|
||||||
Set([dotFoo,tmpDotA,tmpDotAFoo,tmpB,tmpBFoo]),
|
Set([dotFoo,tmpDotA,tmpDotAFoo,tmpB,tmpBFoo]),
|
||||||
relativeTo: tmpdir)
|
relativeTo: tmpdir)
|
||||||
|
|
||||||
#if !os(Linux) || swift(>=5)
|
#if !os(Linux) || swift(>=5)
|
||||||
XCTAssertEqual(
|
XCTAssertEqual(
|
||||||
Set(tmpdir.find().hidden(false)),
|
Set(tmpdir.find().hidden(false)),
|
||||||
@@ -157,7 +157,7 @@ extension PathTests {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func testFindExtension() throws {
|
func testFindExtension() throws {
|
||||||
try Path.mktemp { tmpdir in
|
try Path.mktemp { tmpdir in
|
||||||
try tmpdir.join("foo.json").touch()
|
try tmpdir.join("foo.json").touch()
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@testable import Path
|
@testable import PathKit
|
||||||
import func XCTest.XCTAssertEqual
|
import func XCTest.XCTAssertEqual
|
||||||
import Foundation
|
import Foundation
|
||||||
import XCTest
|
import XCTest
|
||||||
@@ -54,7 +54,7 @@ class PathTests: XCTestCase {
|
|||||||
XCTAssertEqual(["b.swift"], Set(lsrv.files.filter{ $0.extension == "swift" }.map{ $0.relative(to: tmpdir) }))
|
XCTAssertEqual(["b.swift"], Set(lsrv.files.filter{ $0.extension == "swift" }.map{ $0.relative(to: tmpdir) }))
|
||||||
XCTAssertEqual(["c"], Set(lsrv.files.filter{ $0.extension == "" }.map{ $0.relative(to: tmpdir) }))
|
XCTAssertEqual(["c"], Set(lsrv.files.filter{ $0.extension == "" }.map{ $0.relative(to: tmpdir) }))
|
||||||
XCTAssertEqual(paths, ["a", "b.swift", "c", ".d"])
|
XCTAssertEqual(paths, ["a", "b.swift", "c", ".d"])
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func testEnumerationSkippingHiddenFiles() throws {
|
func testEnumerationSkippingHiddenFiles() throws {
|
||||||
@@ -64,7 +64,7 @@ class PathTests: XCTestCase {
|
|||||||
try tmpdir.join("b").touch()
|
try tmpdir.join("b").touch()
|
||||||
try tmpdir.join("c").touch()
|
try tmpdir.join("c").touch()
|
||||||
try tmpdir.join(".d").mkdir().join("e").touch()
|
try tmpdir.join(".d").mkdir().join("e").touch()
|
||||||
|
|
||||||
var paths = Set<String>()
|
var paths = Set<String>()
|
||||||
var dirs = 0
|
var dirs = 0
|
||||||
for path in tmpdir.ls() {
|
for path in tmpdir.ls() {
|
||||||
@@ -688,7 +688,7 @@ class PathTests: XCTestCase {
|
|||||||
XCTAssertEqual(bar.type, .symlink)
|
XCTAssertEqual(bar.type, .symlink)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func testOptionalInitializer() throws {
|
func testOptionalInitializer() throws {
|
||||||
XCTAssertNil(Path(""))
|
XCTAssertNil(Path(""))
|
||||||
XCTAssertNil(Path("./foo"))
|
XCTAssertNil(Path("./foo"))
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@testable import Path
|
@testable import PathKit
|
||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
class TemporaryDirectory {
|
class TemporaryDirectory {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import XCTest
|
import XCTest
|
||||||
import Path
|
import PathKit
|
||||||
|
|
||||||
#if swift(>=5.3)
|
#if swift(>=5.3)
|
||||||
func XCTAssertEqual<P: Pathish>(_ set1: Set<Path>, _ set2: Set<Path>, _ message: @autoclosure () -> String = "", file: StaticString = #filePath, line: UInt = #line, relativeTo: P) {
|
func XCTAssertEqual<P: Pathish>(_ set1: Set<Path>, _ set2: Set<Path>, _ message: @autoclosure () -> String = "", file: StaticString = #filePath, line: UInt = #line, relativeTo: P) {
|
||||||
|
|||||||
Reference in New Issue
Block a user