xcfit 4.0.8 → 4.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 49bd74a7fe5d7653317da07248068a01a68006f5
4
- data.tar.gz: f6bd8664389fe751c9b9fee74bce2ba6e1cebacb
3
+ metadata.gz: 1556c8c1fdca88a5af2d51f7718d7fb889dce4b7
4
+ data.tar.gz: 68664892a9cac7f08e9a5b5c99697ce5682a6031
5
5
  SHA512:
6
- metadata.gz: c8e3efb8dbbd855c830bdb151c4353b5a7604c6aaae9c185d468a84a1ac6d23196bab0d657ddf2dd9bad03e74d5d318d21168bd6f136ef34ab5d87a576e4ad52
7
- data.tar.gz: 36fb83fd39f04179d1eec3227ecd27b27bfba5efcc3cfb83f742ce14df4c53d6b37032585cf05a8ad0340b5c90575ca8b051f2c1f8c5340e35cfd734080aa6d6
6
+ metadata.gz: e665cc8e43033404702a5c30f9ef73260ea8653f7ec50c368c6231da79aa10cab7078ff6d7d715e16c913968ba2d9e73f3f06edce7d2dc7dcabb0e24e7e73f07
7
+ data.tar.gz: 6082e97a74a29d6e6b1d3c4e1998b72129ae2c148976132677870dadf2d9814025df296472d40da747df1e1fe9420602ff870f8379cb68c692f576748693b06f
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = 'XCFit'
3
- s.version = '4.0.8'
3
+ s.version = '4.0.9'
4
4
  s.summary = 'Full Stack BDD for iOS and macOS Apps with Swift, Xcode using XCUITest, Cucumberish, FitNesse and friends.'
5
5
 
6
6
  s.description = <<-DESC
@@ -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
+ }
@@ -3,7 +3,7 @@
3
3
  require 'fileutils'
4
4
  require 'tempfile'
5
5
 
6
- VERSION = "4.0.8"
6
+ VERSION = "4.0.9"
7
7
 
8
8
  @root_dir = File.expand_path('~')
9
9
  @root_lib_dir = File.join(@root_dir, 'Library')
@@ -1,3 +1,3 @@
1
1
  module XCFit
2
- VERSION = "4.0.8"
2
+ VERSION = "4.0.9"
3
3
  end
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.8
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