Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit f323c64

Browse files
authored
Update version of CustomDump dependency (#1)
1 parent 74b5e58 commit f323c64

File tree

5 files changed

+25
-11
lines changed

5 files changed

+25
-11
lines changed

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
],
1919
dependencies: [
2020
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.10.0"),
21-
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "0.5.2"),
21+
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "1.0.0"),
2222
],
2323
targets: [
2424
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
SnapshotTestingDumpTests.Doctor(
2+
name: "John",
3+
4+
age: 97,
25
field: "Podiatry",
36
level: "Expert"
47
)
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
SnapshotTestingDumpTests.TruckDriver(truckType: "Loader")
1+
SnapshotTestingDumpTests.TruckDriver(
2+
name: "Jimmy",
3+
wheels: 6,
4+
truckType: "Loader"
5+
)

Tests/SnapshotTestingDumpTests/__Snapshots__/SnapshotTestingDumpTests/testRecursion.1.txt

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
SnapshotTestingDumpTests.Parent(
2+
name: "Arthur",
23
children: [
34
[0]: SnapshotTestingDumpTests.Child(
5+
name: "Virginia",
46
parent: SnapshotTestingDumpTests.Parent(↩︎)
57
),
6-
[1]: SnapshotTestingDumpTests.Child(
8+
[1]: SnapshotTestingDumpTests.Child#2(
9+
name: "Ronald",
710
parent: SnapshotTestingDumpTests.Parent(↩︎)
811
),
9-
[2]: SnapshotTestingDumpTests.Child(
12+
[2]: SnapshotTestingDumpTests.Child#3(
13+
name: "Fred",
1014
parent: SnapshotTestingDumpTests.Parent(↩︎)
1115
),
12-
[3]: SnapshotTestingDumpTests.Child(
16+
[3]: SnapshotTestingDumpTests.Child#4(
17+
name: "George",
1318
parent: SnapshotTestingDumpTests.Parent(↩︎)
1419
),
15-
[4]: SnapshotTestingDumpTests.Child(
20+
[4]: SnapshotTestingDumpTests.Child#5(
21+
name: "Percy",
1622
parent: SnapshotTestingDumpTests.Parent(↩︎)
1723
),
18-
[5]: SnapshotTestingDumpTests.Child(
24+
[5]: SnapshotTestingDumpTests.Child#6(
25+
name: "Charles",
1926
parent: SnapshotTestingDumpTests.Parent(↩︎)
2027
)
2128
]

0 commit comments

Comments
 (0)