Skip to content

Instantly share code, notes, and snippets.

@polac24
Created November 10, 2018 18:24
Show Gist options
  • Save polac24/e64a7a50cc7150a9550681cadeef69b0 to your computer and use it in GitHub Desktop.
Save polac24/e64a7a50cc7150a9550681cadeef69b0 to your computer and use it in GitHub Desktop.
class DatabaseStub {
lazy var addUserAction = asNil(addUser)
func addUser(name: String) -> Bool {
return addUserAction(name) ?? false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment