[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / 1 / 9 / 7 / KeyPathTesting / 0.1.5 / KeyPathTesting.podspec.json
blob3f44230e975b00d043948ef331d26d4b97b6b674
2   "name": "KeyPathTesting",
3   "version": "0.1.5",
4   "summary": "KeyPathTesting is a framework that leverages Result Builders to implement a new syntax that allows developers to write KeyPath-based unit tests",
5   "description": "KeyPathTesting is a Swift framework that leverages Result Builders to implement a new syntax that allows developers to write KeyPath-based unit tests.\n\nHere's an example of how it can be used:\n\nclass MyTests: XCTestCase {\n    func test() {\n        let myData = [1, 2, 3, 4]\n\n        assert(on: myData) {\n            .isEmpty == false\n            .count > 2\n            .first == 1\n            .last != 1\n        }\n    }\n}",
6   "homepage": "https://github.com/vincent-pradeilles/KeyPathTesting",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Vincent Pradeilles": "vin.pradeilles+keypathtesting@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/vincent-pradeilles/KeyPathTesting.git",
16     "tag": "0.1.5"
17   },
18   "swift_versions": "5.4",
19   "platforms": {
20     "ios": "9.0",
21     "osx": "10.10"
22   },
23   "frameworks": "XCTest",
24   "source_files": "Sources/KeyPathTesting/**/*.swift",
25   "swift_version": "5.4"