├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── tdd-intro.iml └── vcs.xml ├── LICENSE.txt ├── README.md ├── clean.cmd ├── clean.sh ├── facilitator ├── prep-email.md ├── readme.md └── tdd-intro-slides.pdf ├── package.json ├── run.cmd ├── run.sh ├── src ├── _score_test.js ├── cli │ └── run.js └── score.js ├── watch.cmd └── watch.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/workspace.xml 2 | generated/ 3 | .bin 4 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tdd-intro.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/.idea/tdd-intro.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/README.md -------------------------------------------------------------------------------- /clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/clean.cmd -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/clean.sh -------------------------------------------------------------------------------- /facilitator/prep-email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/facilitator/prep-email.md -------------------------------------------------------------------------------- /facilitator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/facilitator/readme.md -------------------------------------------------------------------------------- /facilitator/tdd-intro-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/facilitator/tdd-intro-slides.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/package.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/run.cmd -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/run.sh -------------------------------------------------------------------------------- /src/_score_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/src/_score_test.js -------------------------------------------------------------------------------- /src/cli/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/src/cli/run.js -------------------------------------------------------------------------------- /src/score.js: -------------------------------------------------------------------------------- 1 | // Copyright Titanium I.T. LLC. 2 | "use strict"; 3 | 4 | exports.analyze = function(cardsString) { 5 | return 19; 6 | }; -------------------------------------------------------------------------------- /watch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/watch.cmd -------------------------------------------------------------------------------- /watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesshore/tdd-intro/HEAD/watch.sh --------------------------------------------------------------------------------