diff --git a/Sources/HummingbirdMustache/CustomRenderable.swift b/Sources/HummingbirdMustache/CustomRenderable.swift index dfdb0fb..30f9f16 100644 --- a/Sources/HummingbirdMustache/CustomRenderable.swift +++ b/Sources/HummingbirdMustache/CustomRenderable.swift @@ -11,6 +11,7 @@ // SPDX-License-Identifier: Apache-2.0 // //===----------------------------------------------------------------------===// + import Foundation protocol HBMustacheCustomRenderable { diff --git a/Sources/HummingbirdMustache/Lambda.swift b/Sources/HummingbirdMustache/Lambda.swift index 2ddc19e..d669503 100644 --- a/Sources/HummingbirdMustache/Lambda.swift +++ b/Sources/HummingbirdMustache/Lambda.swift @@ -12,7 +12,6 @@ // //===----------------------------------------------------------------------===// - /// Lambda function. Can add this to object being rendered to filter contents of objects. /// /// See http://mustache.github.io/mustache.5.html for more details on diff --git a/Sources/HummingbirdMustache/Template+Render.swift b/Sources/HummingbirdMustache/Template+Render.swift index d85f7ad..89ca803 100644 --- a/Sources/HummingbirdMustache/Template+Render.swift +++ b/Sources/HummingbirdMustache/Template+Render.swift @@ -11,6 +11,7 @@ // SPDX-License-Identifier: Apache-2.0 // //===----------------------------------------------------------------------===// + import Foundation extension HBMustacheTemplate { diff --git a/Tests/HummingbirdMustacheTests/SpecTests.swift b/Tests/HummingbirdMustacheTests/SpecTests.swift index 9954da0..e9fb949 100644 --- a/Tests/HummingbirdMustacheTests/SpecTests.swift +++ b/Tests/HummingbirdMustacheTests/SpecTests.swift @@ -136,9 +136,6 @@ final class MustacheSpecTests: XCTestCase { } func testInheritanceSpec() throws { - let url = URL( - string: "https://raw.githubusercontent.com/mustache/spec/ab227509e64961943ca374c09c08b63f59da014a/specs/inheritance.json" - )! - try self.testSpec(url: url) + try self.testSpec(name: "~inheritance") } }