Added test cases

This commit is contained in:
Matthew-Cravinhos
2017-09-20 19:04:46 -04:00
parent f72bdd2ee3
commit 6012c3a095
17 changed files with 452 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
function echo() {
}
function shout() {
}
function repeat() {
}
function pieceOfWord() {
}
function firstWord() {
}
function capitalize(word) {
return word.charAt(0).toUpperCase() + word.slice(1);
// This function just capitalizes the word given to it, use in conjunction with titleCreator
}
function titleCreator() {
}
module.exports = {
echo,
shout,
repeat,
pieceOfWord,
firstWord,
titleCreator
}