[Add] FCNews 0.3.26
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 1.0.0 / OCMockito.podspec.json
blob65754b81293450e48c1e4490b026e89b773c116a
2   "name": "OCMockito",
3   "version": "1.0.0",
4   "license": "MIT",
5   "summary": "OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.",
6   "homepage": "https://github.com/jonreid/OCMockito",
7   "authors": {
8     "Jon Reid": "jon@qualitycoding.org"
9   },
10   "source": {
11     "git": "https://github.com/jonreid/OCMockito.git",
12     "tag": "v1.0.0"
13   },
14   "description": "\n      OCMockito is an Objective-C implementation of Mockito, supporting creation, \n      verification and stubbing of mock objects.\n\n      Key differences from other mocking frameworks:\n\n      * Mock objects are always \"nice,\" recording their calls instead of \n        throwing exceptions about unspecified invocations. This makes tests less fragile.\n      * No expect-run-verify, making tests more readable. Mock objects \n        record their calls, then you verify the methods you want.\n      * Verification failures are reported as unit test failures, \n        identifying specific lines instead of throwing exceptions. This makes \n        it easier to identify failures.\n  ",
15   "platforms": {
16     "ios": "5.0",
17     "osx": "10.7"
18   },
19   "source_files": [
20     "Source/OCMockito/OCMockito.h",
21     "Source/OCMockito/**/*.{h,m,mm}"
22   ],
23   "requires_arc": true,
24   "dependencies": {
25     "OCHamcrest": [
26       "~> 3.0"
27     ]
28   }