[Delete] DSPSDK 1.0.0.3
[CocoaPods.git] / Specs / 0 / 4 / 3 / RxTests / 3.0.0.alpha.1 / RxTests.podspec.json
blob45c41b1b8709fc35477d2c6dd3f22e7cc3b009e9
2   "name": "RxTests",
3   "version": "3.0.0.alpha.1",
4   "summary": "RxSwift Testing extensions",
5   "description": "Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers\nthat should make unit testing your operators easy as unit testing RxSwift built-in operators.\n\nThis library contains everything you needed to write unit tests in the following way:\n```swift\nfunc testMap() {\n    let scheduler = TestScheduler(initialClock: 0)\n\n    let xs = scheduler.createHotObservable([\n        next(150, 1),\n        next(210, 0),\n        next(220, 1),\n        next(230, 2),\n        next(240, 4),\n        completed(300)\n        ])\n\n    let res = scheduler.start { xs.map { $0 * 2 } }\n\n    let correctEvents = [\n        next(210, 0 * 2),\n        next(220, 1 * 2),\n        next(230, 2 * 2),\n        next(240, 4 * 2),\n        completed(300)\n    ]\n\n    let correctSubscriptions = [\n        Subscription(200, 300)\n    ]\n\n    XCTAssertEqual(res.events, correctEvents)\n    XCTAssertEqual(xs.subscriptions, correctSubscriptions)\n}\n```",
6   "homepage": "https://github.com/ReactiveX/RxSwift",
7   "license": "MIT",
8   "authors": {
9     "Krunoslav Zaher": "krunoslav.zaher@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/ReactiveX/RxSwift.git",
13     "tag": "3.0.0.alpha.1"
14   },
15   "requires_arc": true,
16   "platforms": {
17     "ios": "8.0",
18     "osx": "10.10",
19     "tvos": "9.0"
20   },
21   "source_files": "RxTests/**/*.swift",
22   "frameworks": "XCTest",
23   "dependencies": {
24     "RxSwift": [
25       "~> 3.0.0.alpha.1"
26     ]
27   },
28   "pod_target_xcconfig": {
29     "ENABLE_BITCODE": "NO"
30   },
31   "deprecated_in_favor_of": "RxTest"