Last active
December 8, 2019 21:47
-
-
Save mrcampbell/13e2dc85b78722bdf4c93bfd6575db4b to your computer and use it in GitHub Desktop.
gist for "tests: another form of documentation", medium blog post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createUser(name, age, address) { | |
if (age < 13) { | |
throw Error("user must be older than 13 to register") | |
} | |
// insert into database, then return result | |
return db.insertUser({name, age, address}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment