From e4204e51eed308628817bdfb6350a44dc53c1bbd Mon Sep 17 00:00:00 2001 From: Brian Clymer Date: Sun, 1 Sep 2019 15:33:15 -0500 Subject: [PATCH] Tweak an includes test. --- Tests/XcodeGenKitTests/SourceGeneratorTests.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tests/XcodeGenKitTests/SourceGeneratorTests.swift b/Tests/XcodeGenKitTests/SourceGeneratorTests.swift index e7f16db7..8e94cc20 100644 --- a/Tests/XcodeGenKitTests/SourceGeneratorTests.swift +++ b/Tests/XcodeGenKitTests/SourceGeneratorTests.swift @@ -715,6 +715,8 @@ class SourceGeneratorTests: XCTestCase { - group5: - file.swift - file5Tests.swift + - file6Tests.m + - file6Tests.h """ try createDirectories(directories) @@ -732,6 +734,8 @@ class SourceGeneratorTests: XCTestCase { try pbxProj.expectFile(paths: ["Sources", "file3Tests.swift"]) try pbxProj.expectFile(paths: ["Sources", "group2", "fileTests.swift"]) try pbxProj.expectFile(paths: ["Sources", "group3", "group4", "group5", "file5Tests.swift"]) + try pbxProj.expectFile(paths: ["Sources", "group3", "group4", "group5", "file6Tests.h"]) + try pbxProj.expectFile(paths: ["Sources", "group3", "group4", "group5", "file6Tests.m"]) try pbxProj.expectFileMissing(paths: ["Sources", "file2.swift"]) try pbxProj.expectFileMissing(paths: ["Sources", "file3.swift"]) try pbxProj.expectFileMissing(paths: ["Sources", "group2", "file.swift"])