Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Update project name to Site
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif committed Dec 3, 2021
1 parent d729423 commit d7c5dc1
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import PackageDescription

let package = Package(
name: "StaticSite",
name: "Site",
products: [
.executable(
name: "StaticSite",
targets: ["StaticSite"]
name: "Site",
targets: ["Site"]
)
],
dependencies: [
Expand All @@ -17,7 +17,7 @@ let package = Package(
],
targets: [
.target(
name: "StaticSite",
name: "Site",
dependencies: [
"Publish",
"CNAMEPublishPlugin",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import XCTest
@testable import StaticSite
@testable import Site

final class StaticSiteTests: XCTestCase {
final class SiteTests: XCTestCase {
func testExample() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(StaticSite().text, "Hello, World!")
XCTAssertEqual(Site().text, "Hello, World!")
}
}

0 comments on commit d7c5dc1

Please sign in to comment.