[Add] MapboxCommon 24.10.0-daily-2024-12-21-04-26
[CocoaPods.git] / Specs / 1 / 9 / 7 / KeyPathTesting / 0.1.1 / KeyPathTesting.podspec.json
blob36f66176a0794230be3389a5d02912a904efb877
2   "name": "KeyPathTesting",
3   "version": "0.1.1",
4   "summary": "KeyPathTesting is a framework that leverages Function Builders to implement a new syntax that allows developers to write KeyPath-based unit tests",
5   "description": "KeyPathTesting is a Swift framework that leverages Function 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.1"
17   },
18   "swift_versions": "5.1",
19   "platforms": {
20     "ios": "9.0"
21   },
22   "frameworks": "XCTest",
23   "source_files": "KeyPathTesting/KeyPathTesting/**/*.swift",
24   "swift_version": "5.1"