This PR contains the work done to rename the _Website_ service's library SwiftPM target from `WebsiteCore` to `WebsiteLibrary`, updating every reference across the manifest, source, tests, Xcode schemes, and documentations. Reviewed-on: rock-n-code/loud-amsterdam#14 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
26 lines
605 B
Swift
26 lines
605 B
Swift
import Elementary
|
|
import Foundation
|
|
import Testing
|
|
|
|
@testable import WebsiteLibrary
|
|
|
|
@Suite("ErrorPage page")
|
|
struct ErrorPageTests {
|
|
|
|
// MARK: Functional tests
|
|
|
|
@Test
|
|
func `renders its markup`() {
|
|
let html = ErrorPage(
|
|
locale: .init(identifier: "en")
|
|
).render()
|
|
|
|
#expect(html.contains("<!DOCTYPE html>"))
|
|
#expect(html.contains(#"lang="en""#))
|
|
#expect(html.contains("Page Not Found"))
|
|
#expect(html.contains("Sorry, but the page you were trying to view does not exist."))
|
|
#expect(html.contains("/css/error.css"))
|
|
}
|
|
|
|
}
|