Skip to content

Commit

Permalink
Merge pull request #32 from tidal-music/michael/Rename-catalog-to-cat…
Browse files Browse the repository at this point in the history
…alogue

Rename catalog to catalogue
  • Loading branch information
michpohl authored Jun 26, 2024
2 parents 4426ab7 + 926b431 commit e76cca3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ let package = Package(
]
),
.target(
name: "Catalog",
name: "Catalogue",
plugins: [
.plugin(name: "SwiftLint", package: "SwiftLintPlugin"),
]
),
.testTarget(
name: "CatalogTests",
name: "CatalogueTests",
dependencies: [
.catalog,
.catalogue,
]
),
.target(
Expand Down Expand Up @@ -146,7 +146,7 @@ extension Target.Dependency {
/// Local
static let template = byName(name: "Template")
static let eventProducer = byName(name: "EventProducer")
static let catalog = byName(name: "Catalog")
static let catalogue = byName(name: "Catalogue")
static let common = byName(name: "Common")
static let auth = byName(name: "Auth")
static let player = byName(name: "Player")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public struct Catalog {
public struct Catalogue {
public let text = "Hello, World!"

public init() {}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Catalog/README.md → Sources/Catalogue/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Catalog
# Catalogue
Add here one or two sentences what this library is.

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@testable import Catalog
@testable import Catalogue
import XCTest

final class CatalogTests: XCTestCase {
func testCatalog() throws {
final class CatalogueTests: XCTestCase {
func testCatalogue() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
let template = Catalog()
let template = Catalogue()

XCTAssertEqual(template.sayHello(), "Hello, World!")
}
Expand Down

0 comments on commit e76cca3

Please sign in to comment.