Skip to content

Commit 17ce4fd

Browse files
committed
Added README
1 parent b91b356 commit 17ce4fd

5 files changed

Lines changed: 47 additions & 0 deletions

File tree

Anvil Hack.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
9D2B60781EABABEC00FBB670 /* SmartRoomNetworkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D2B60771EABABEC00FBB670 /* SmartRoomNetworkManager.swift */; };
2121
9D8FC4A01EABBE900022DBF1 /* SmartRoomNetworkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8FC49F1EABBE900022DBF1 /* SmartRoomNetworkManager.swift */; };
2222
9D8FC4A21EABBFE40022DBF1 /* Anvil_HackUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D2B605F1EAB7D1B00FBB670 /* Anvil_HackUITests.swift */; };
23+
9D8FC4A41EABE1AC0022DBF1 /* SmartRoomViewControllerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8FC4A31EABE1AC0022DBF1 /* SmartRoomViewControllerTests.swift */; };
2324
BCD52D3EB14CF5CAA4B4F6E4 /* Pods_Anvil_Hack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9608B7E81AD594D84FD7F945 /* Pods_Anvil_Hack.framework */; };
2425
/* End PBXBuildFile section */
2526

@@ -65,6 +66,7 @@
6566
9D2B60751EAB9E4B00FBB670 /* AppNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppNavigationController.swift; sourceTree = "<group>"; };
6667
9D2B60771EABABEC00FBB670 /* SmartRoomNetworkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SmartRoomNetworkManager.swift; sourceTree = "<group>"; };
6768
9D8FC49F1EABBE900022DBF1 /* SmartRoomNetworkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SmartRoomNetworkManager.swift; sourceTree = "<group>"; };
69+
9D8FC4A31EABE1AC0022DBF1 /* SmartRoomViewControllerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SmartRoomViewControllerTests.swift; sourceTree = "<group>"; };
6870
BB43B1617A70013A76FC7CC7 /* Pods-Anvil Hack.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Anvil Hack.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Anvil Hack/Pods-Anvil Hack.debug.xcconfig"; sourceTree = "<group>"; };
6971
ED25533B26F5C4C31BA1B2F6 /* Pods-Anvil HackUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Anvil HackUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Anvil HackUITests/Pods-Anvil HackUITests.release.xcconfig"; sourceTree = "<group>"; };
7072
ED97069CC10C43FC6899C8B7 /* Pods_Anvil_HackUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Anvil_HackUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -156,6 +158,7 @@
156158
children = (
157159
9D8FC49F1EABBE900022DBF1 /* SmartRoomNetworkManager.swift */,
158160
9D2B60561EAB7D1B00FBB670 /* Info.plist */,
161+
9D8FC4A31EABE1AC0022DBF1 /* SmartRoomViewControllerTests.swift */,
159162
);
160163
path = "Anvil HackTests";
161164
sourceTree = "<group>";
@@ -483,6 +486,7 @@
483486
buildActionMask = 2147483647;
484487
files = (
485488
9D8FC4A01EABBE900022DBF1 /* SmartRoomNetworkManager.swift in Sources */,
489+
9D8FC4A41EABE1AC0022DBF1 /* SmartRoomViewControllerTests.swift in Sources */,
486490
);
487491
runOnlyForDeploymentPostprocessing = 0;
488492
};
Binary file not shown.

Anvil Hack.xcworkspace/xcuserdata/franco.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,22 @@
22
<Bucket
33
type = "0"
44
version = "2.0">
5+
<Breakpoints>
6+
<BreakpointProxy
7+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
8+
<BreakpointContent
9+
shouldBeEnabled = "Yes"
10+
ignoreCount = "0"
11+
continueAfterRunningActions = "No"
12+
filePath = "Anvil HackTests/SmartRoomViewControllerTests.swift"
13+
timestampString = "514581042.475327"
14+
startingColumnNumber = "9223372036854775807"
15+
endingColumnNumber = "9223372036854775807"
16+
startingLineNumber = "16"
17+
endingLineNumber = "16"
18+
landmarkName = "spec()"
19+
landmarkType = "7">
20+
</BreakpointContent>
21+
</BreakpointProxy>
22+
</Breakpoints>
523
</Bucket>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//
2+
// SmartRoomViewControllerTests.swift
3+
// Anvil Hack
4+
//
5+
// Created by Franco Meloni on 22/04/2017.
6+
// Copyright © 2017 Franco Meloni. All rights reserved.
7+
//
8+
9+
import Quick
10+
import Nimble
11+
12+
@testable import Anvil_Hack
13+
14+
class SmartRoomViewControllerTests: QuickSpec {
15+
override func spec() {
16+
var smartRoomViewController: SmartRoomViewController! = UIStoryboard(name: "Main", bundle: nil) as!SmartRoomViewController
17+
18+
beforeEach {
19+
smartRoomViewController = UIStoryboard(name: "Main", bundle: nil) as!SmartRoomViewController
20+
}
21+
22+
23+
}
24+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[![Build Status](https://www.bitrise.io/app/b402bfdd768fc59f.svg?token=_cZ53d07wMSudAU6dMWzjA)](https://www.bitrise.io/app/b402bfdd768fc59f)

0 commit comments

Comments
 (0)