Skip to content

Commit 21e3bbe

Browse files
committed
Configured test to use Quick and Nimble
1 parent fb49fc9 commit 21e3bbe

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

RichString.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
02BA12671DCD2E1F00215490 /* RichText.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02BA12661DCD2E1F00215490 /* RichText.swift */; };
2222
9C77D989AC6B4B56AB6CB08E /* Pods_RichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AFC3533D24E1F50D8F3E2AEA /* Pods_RichString.framework */; };
2323
B61C33CC01613136B34D516F /* Pods_RichStringTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A527B5B0FCC07F4B200B7273 /* Pods_RichStringTests.framework */; };
24-
F8DAC4231DCDEC87002CF542 /* RichStringTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DAC4221DCDEC87002CF542 /* RichStringTests.swift */; };
24+
F8DAC4231DCDEC87002CF542 /* RichStringSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DAC4221DCDEC87002CF542 /* RichStringSpec.swift */; };
2525
F8DAC4251DCDEC87002CF542 /* RichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02BA123A1DCD206300215490 /* RichString.framework */; };
2626
/* End PBXBuildFile section */
2727

@@ -77,7 +77,7 @@
7777
AFC3533D24E1F50D8F3E2AEA /* Pods_RichString.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RichString.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7878
DC20DE4531A3E2F8DE0398EE /* Pods-RichString.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RichString.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RichString/Pods-RichString.debug.xcconfig"; sourceTree = "<group>"; };
7979
F8DAC4201DCDEC87002CF542 /* RichStringTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RichStringTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
80-
F8DAC4221DCDEC87002CF542 /* RichStringTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RichStringTests.swift; sourceTree = "<group>"; };
80+
F8DAC4221DCDEC87002CF542 /* RichStringSpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RichStringSpec.swift; sourceTree = "<group>"; };
8181
F8DAC4241DCDEC87002CF542 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8282
FF1D8C39E72F02340C18BAB2 /* Pods-RichString.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RichString.release.xcconfig"; path = "Pods/Target Support Files/Pods-RichString/Pods-RichString.release.xcconfig"; sourceTree = "<group>"; };
8383
/* End PBXFileReference section */
@@ -182,7 +182,7 @@
182182
F8DAC4211DCDEC87002CF542 /* RichStringTests */ = {
183183
isa = PBXGroup;
184184
children = (
185-
F8DAC4221DCDEC87002CF542 /* RichStringTests.swift */,
185+
F8DAC4221DCDEC87002CF542 /* RichStringSpec.swift */,
186186
F8DAC4241DCDEC87002CF542 /* Info.plist */,
187187
);
188188
path = RichStringTests;
@@ -455,7 +455,7 @@
455455
isa = PBXSourcesBuildPhase;
456456
buildActionMask = 2147483647;
457457
files = (
458-
F8DAC4231DCDEC87002CF542 /* RichStringTests.swift in Sources */,
458+
F8DAC4231DCDEC87002CF542 /* RichStringSpec.swift in Sources */,
459459
);
460460
runOnlyForDeploymentPostprocessing = 0;
461461
};

RichStringTests/RichStringSpec.swift

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright © 2016 Stefan van den Oord. All rights reserved.
2+
3+
import Quick
4+
import Nimble
5+
6+
class RichStringSpec: QuickSpec {
7+
override func spec() {
8+
it("can run tests") {
9+
10+
}
11+
}
12+
}

RichStringTests/RichStringTests.swift

-7
This file was deleted.

0 commit comments

Comments
 (0)