blob: bb41ceafa1e626089dbe242df4cbd488ccf8acf9 [file] [log] [blame]
{
"name": "KeyPathTesting",
"version": "0.1",
"summary": "KeyPathTesting is a framework that leverages Function Builders to implement a new syntax that allows developers to write KeyPath-based unit tests",
"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}",
"homepage": "https://github.com/vincent-pradeilles/KeyPathTesting",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Vincent Pradeilles": "vin.pradeilles+keypathtesting@gmail.com"
},
"source": {
"git": "https://github.com/vincent-pradeilles/KeyPathTesting.git",
"tag": "0.1"
},
"swift_versions": "5.1",
"platforms": {
"ios": "9.0"
},
"frameworks": "XCTest",
"source_files": "KeyPathTesting/KeyPathTesting/**/*.swift",
"swift_version": "5.1"
}