xcfit 4.0.8 → 4.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/XCFit.podspec +1 -1
- data/XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Tests.swift +37 -0
- data/homebrew/xcfit +1 -1
- data/lib/XCFit/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1556c8c1fdca88a5af2d51f7718d7fb889dce4b7
|
4
|
+
data.tar.gz: 68664892a9cac7f08e9a5b5c99697ce5682a6031
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e665cc8e43033404702a5c30f9ef73260ea8653f7ec50c368c6231da79aa10cab7078ff6d7d715e16c913968ba2d9e73f3f06edce7d2dc7dcabb0e24e7e73f07
|
7
|
+
data.tar.gz: 6082e97a74a29d6e6b1d3c4e1998b72129ae2c148976132677870dadf2d9814025df296472d40da747df1e1fe9420602ff870f8379cb68c692f576748693b06f
|
data/XCFit.podspec
CHANGED
@@ -0,0 +1,37 @@
|
|
1
|
+
//
|
2
|
+
//
|
3
|
+
// Created by XCFit Framework
|
4
|
+
// Copyright © 2016 XCFit Framework. All rights reserved.
|
5
|
+
//
|
6
|
+
|
7
|
+
/*
|
8
|
+
|
9
|
+
This is sample code created by XCFit Framework and can be edited/Removed as per your project need. You can also re-arrange Xcode Groups and directories as per your need.
|
10
|
+
|
11
|
+
This is a actual representation of the test which extends to XCFit and confirms to Feature protocol. We can write a protocol per test implement steps with extensions and store elements in the enums.
|
12
|
+
|
13
|
+
*/
|
14
|
+
|
15
|
+
import XCTest
|
16
|
+
|
17
|
+
//import XCFit
|
18
|
+
|
19
|
+
// Once XCFit is imported then you can extend this class to use pre-defined steps
|
20
|
+
|
21
|
+
class FeatureTests: XCTestCase, Feature {
|
22
|
+
|
23
|
+
override func setUp() {
|
24
|
+
super.setUp()
|
25
|
+
|
26
|
+
continueAfterFailure = false
|
27
|
+
XCUIApplication().launch()
|
28
|
+
}
|
29
|
+
|
30
|
+
override func tearDown() {
|
31
|
+
super.tearDown()
|
32
|
+
}
|
33
|
+
|
34
|
+
func testAppIsRunning() {
|
35
|
+
givenTheAppIsRunning()
|
36
|
+
}
|
37
|
+
}
|
data/homebrew/xcfit
CHANGED
data/lib/XCFit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcfit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant86
|
@@ -109,6 +109,7 @@ files:
|
|
109
109
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Enum.swift
|
110
110
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Extension.swift
|
111
111
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Protocol.swift
|
112
|
+
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Tests.swift
|
112
113
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/TemplateIcon.png
|
113
114
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/TemplateIcon@2x.png
|
114
115
|
- XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/TemplateInfo.plist
|