Skip to content

Commit 38356c2

Browse files
committed
fix: Test project layout
Fixes kylef#26
1 parent bac4a72 commit 38356c2

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

JSONSchema.xcodeproj/project.pbxproj

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,15 @@
121121
/* End PBXFrameworksBuildPhase section */
122122

123123
/* Begin PBXGroup section */
124+
275051D21FD01C0D00492E00 /* JSONSchemaTests */ = {
125+
isa = PBXGroup;
126+
children = (
127+
27CF7EFB1A9B9EDA0063FDE4 /* JSONSchemaTests.swift */,
128+
27B640CC1AAB12CB005C8641 /* JSONSchemaCases.swift */,
129+
);
130+
path = JSONSchemaTests;
131+
sourceTree = "<group>";
132+
};
124133
27B640C81AAB1080005C8641 /* Configurations */ = {
125134
isa = PBXGroup;
126135
children = (
@@ -191,7 +200,7 @@
191200
children = (
192201
27B640C81AAB1080005C8641 /* Configurations */,
193202
27CF7EEB1A9B9EDA0063FDE4 /* JSONSchema */,
194-
27CF7EF81A9B9EDA0063FDE4 /* JSONSchemaTests */,
203+
27CF7EF81A9B9EDA0063FDE4 /* Tests */,
195204
27CF7EEA1A9B9EDA0063FDE4 /* Products */,
196205
);
197206
indentWidth = 2;
@@ -227,15 +236,13 @@
227236
name = "Supporting Files";
228237
sourceTree = "<group>";
229238
};
230-
27CF7EF81A9B9EDA0063FDE4 /* JSONSchemaTests */ = {
239+
27CF7EF81A9B9EDA0063FDE4 /* Tests */ = {
231240
isa = PBXGroup;
232241
children = (
233242
27B640CE1AAB13A8005C8641 /* tests */,
234-
27CF7EFB1A9B9EDA0063FDE4 /* JSONSchemaTests.swift */,
235-
27B640CC1AAB12CB005C8641 /* JSONSchemaCases.swift */,
243+
275051D21FD01C0D00492E00 /* JSONSchemaTests */,
236244
27CF7EF91A9B9EDA0063FDE4 /* Supporting Files */,
237245
);
238-
name = JSONSchemaTests;
239246
path = Tests;
240247
sourceTree = "<group>";
241248
};

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ import PackageDescription
22

33

44
let package = Package(
5-
name: "JSONSchema"
5+
name: "JSONSchema",
6+
exclude: [
7+
"Tests/Cases",
8+
]
69
)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)