Skip to content

Commit 84f341b

Browse files
authored
Merge pull request #16 from playbook-ui/feat/remove-xctest-dependency
feat: Remove XCTest as a dependency
2 parents b4e0909 + 342b8ed commit 84f341b

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.2.0

Example/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PODS:
22
- AccessibilitySnapshot/Core (0.4.1)
33
- Playbook (0.2.1)
4-
- PlaybookAccessibilitySnapshot (0.1.1):
4+
- PlaybookAccessibilitySnapshot (0.2.0):
55
- AccessibilitySnapshot/Core (~> 0.4.1)
6-
- PlaybookSnapshot (~> 0.2.1)
7-
- PlaybookSnapshot (0.2.1):
6+
- PlaybookSnapshot (~> 0.3.0)
7+
- PlaybookSnapshot (0.3.0):
88
- Playbook (~> 0.2.0)
99

1010
DEPENDENCIES:
@@ -24,8 +24,8 @@ EXTERNAL SOURCES:
2424
SPEC CHECKSUMS:
2525
AccessibilitySnapshot: 7d696575ee0df4371dde653b3087aaa9cfe4c300
2626
Playbook: 7c69cf1ccb790f730cdc853753910cd3673fe1af
27-
PlaybookAccessibilitySnapshot: e3755a0bbc7352204bf43661482a0674cdb29888
28-
PlaybookSnapshot: 21815a687fd3fd872f8a1861e47632da63891c78
27+
PlaybookAccessibilitySnapshot: 1019aba76274cb91dbe7bfa177f5dda67a3a9d0b
28+
PlaybookSnapshot: 1f471621af3c700bb357d1346b22f468eee9d3a4
2929

3030
PODFILE CHECKSUM: 36a2ab796517e070d29584ada311d6a66782f841
3131

PlaybookAccessibilitySnapshot.podspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ Pod::Spec.new do |spec|
1212
spec.swift_versions = '5.3'
1313
spec.ios.deployment_target = '12.0'
1414
spec.ios.source_files = 'Sources/**/*.swift'
15-
spec.ios.frameworks = 'XCTest'
16-
spec.dependency 'PlaybookSnapshot', "~> 0.2.1"
15+
spec.dependency 'PlaybookSnapshot', "~> 0.3.0"
1716
spec.dependency 'AccessibilitySnapshot/Core', "~> 0.4.1"
1817

1918
spec.pod_target_xcconfig = {

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
### AccessibilitySnapshot
2727

28-
2928
```swift
3029
final class AccessibilitySnapshotTests: XCTestCase {
3130
func testTakeAccessibilitySnapshot() throws {

Sources/AccessibilitySnapshot.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import AccessibilitySnapshot
22
import PlaybookSnapshot
3-
import XCTest
43

54
/// The testing tool which generates snapshot images from scenarios managed by `Playbook`.
65
public struct AccessibilitySnapshot: TestTool {

0 commit comments

Comments
 (0)