Skip to content

Instantly share code, notes, and snippets.

@LukeSmith16
Last active April 3, 2023 13:33
Show Gist options
  • Save LukeSmith16/115714bc7b4173efbc90caf4fbb1a6a9 to your computer and use it in GitHub Desktop.
Save LukeSmith16/115714bc7b4173efbc90caf4fbb1a6a9 to your computer and use it in GitHub Desktop.
Example domain model with mock helper extension
struct ShoppingList: Codable {
let items: [String]
}
extension ShoppingList {
static func mock(with items: [String] = []) -> Self {
.init(items: items)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment