2 "name": "KeyPathTesting",
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",
12 "Vincent Pradeilles": "vin.pradeilles+keypathtesting@gmail.com"
15 "git": "https://github.com/vincent-pradeilles/KeyPathTesting.git",
18 "swift_versions": "5.4",
22 "frameworks": "XCTest",
23 "source_files": "KeyPathTesting/KeyPathTesting/**/*.swift",
24 "swift_version": "5.4"