├── .babelrc ├── .coveralls.yml ├── .dockerignore ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── SUMMARY.md ├── app.js ├── bdd ├── exercises │ ├── findIndex.js │ ├── findInput.js │ └── zip.js ├── instructions.md ├── program.test.js └── solution │ └── program.test.js ├── book.json ├── config └── config.js ├── constants └── constants.js ├── crudOperations └── index.js ├── docker-compose.yml ├── docs ├── bdd │ └── bdd.md ├── e2e │ └── e2e.md ├── fixtures │ └── fixtures.md ├── integration │ └── integration.md ├── mocking │ └── mocking.md ├── property │ └── property.md ├── tdd │ └── tdd.md └── unit │ └── unit.md ├── end-to-end-tests ├── instructions.md ├── nightwatch.conf.js ├── nightwatch.runner.js ├── nightwatch │ └── codeCraftsmanshipSaturdays.js ├── page-objects │ └── codeCraftsmanshipSaturdaysPage.js └── solution │ └── nightwatch │ ├── nightwatch.solution.js │ └── nightwatch.solution.page.objects.js ├── gulpfile.js ├── icomoon ├── PNG │ ├── arrow-down-left.png │ ├── arrow-down-right.png │ ├── arrow-down6.png │ ├── arrow-left.png │ ├── arrow-left2.png │ ├── arrow-left3.png │ ├── arrow-left4.png │ ├── arrow-left5.png │ ├── arrow-left6.png │ ├── arrow-right3.png │ ├── arrow-right5.png │ ├── arrow-right6.png │ ├── arrow-up-left.png │ ├── arrow-up-right.png │ ├── arrow-up2.png │ ├── arrow-up3.png │ ├── arrow-up4.png │ ├── arrow-up5.png │ ├── arrow-up6.png │ ├── bin.png │ ├── bin2.png │ ├── box-add.png │ ├── bubble-dots2.png │ ├── bubble7.png │ ├── cart.png │ ├── cart4.png │ ├── checkbox-checked2.png │ ├── checkmark.png │ ├── circle-down2.png │ ├── circle-up2.png │ ├── cog.png │ ├── cog7.png │ ├── credit-card.png │ ├── cross.png │ ├── cross2.png │ ├── cross3.png │ ├── enlarge2.png │ ├── enlarge7.png │ ├── facebook2.png │ ├── file-check2.png │ ├── folder-plus4.png │ ├── folder-remove.png │ ├── folder3.png │ ├── google-plus2.png │ ├── home.png │ ├── home4.png │ ├── lock2.png │ ├── pencil.png │ ├── pencil2.png │ ├── play.png │ ├── play2.png │ ├── plus3.png │ ├── rss2.png │ ├── shrink7.png │ ├── skype.png │ ├── spinner10.png │ ├── spinner3.png │ ├── spinner7.png │ ├── spinner9.png │ ├── stack3.png │ ├── tumblr2.png │ ├── twitter.png │ ├── unlocked2.png │ ├── user3.png │ ├── user4.png │ ├── user5.png │ └── user6.png ├── Read Me.txt ├── SVG │ ├── arrow-down-left.svg │ ├── arrow-down-right.svg │ ├── arrow-down6.svg │ ├── arrow-left.svg │ ├── arrow-left2.svg │ ├── arrow-left3.svg │ ├── arrow-left4.svg │ ├── arrow-left5.svg │ ├── arrow-left6.svg │ ├── arrow-right3.svg │ ├── arrow-right5.svg │ ├── arrow-right6.svg │ ├── arrow-up-left.svg │ ├── arrow-up-right.svg │ ├── arrow-up2.svg │ ├── arrow-up3.svg │ ├── arrow-up4.svg │ ├── arrow-up5.svg │ ├── arrow-up6.svg │ ├── bin.svg │ ├── bin2.svg │ ├── box-add.svg │ ├── bubble-dots2.svg │ ├── bubble7.svg │ ├── cart.svg │ ├── cart4.svg │ ├── checkbox-checked2.svg │ ├── checkmark.svg │ ├── circle-down2.svg │ ├── circle-up2.svg │ ├── cog.svg │ ├── cog7.svg │ ├── credit-card.svg │ ├── cross.svg │ ├── cross2.svg │ ├── cross3.svg │ ├── enlarge2.svg │ ├── enlarge7.svg │ ├── facebook2.svg │ ├── file-check2.svg │ ├── folder-plus4.svg │ ├── folder-remove.svg │ ├── folder3.svg │ ├── google-plus2.svg │ ├── home.svg │ ├── home4.svg │ ├── lock2.svg │ ├── pencil.svg │ ├── pencil2.svg │ ├── play.svg │ ├── play2.svg │ ├── plus3.svg │ ├── rss2.svg │ ├── shrink7.svg │ ├── skype.svg │ ├── spinner10.svg │ ├── spinner3.svg │ ├── spinner7.svg │ ├── spinner9.svg │ ├── stack3.svg │ ├── tumblr2.svg │ ├── twitter.svg │ ├── unlocked2.svg │ ├── user3.svg │ ├── user4.svg │ ├── user5.svg │ └── user6.svg ├── demo-external-svg.html ├── demo-files │ └── demo.css ├── demo.html ├── selection.json ├── style.css ├── svgxuse.js └── symbol-defs.svg ├── images └── favicon.ico ├── integration-tests ├── instructions.md ├── program.test.js └── solution │ └── program.test.js ├── mocks-stubs-spies ├── instructions.md ├── program.tape.test.js ├── program.test.js └── solution │ ├── node-nock │ └── program.test.js │ └── sinon │ ├── program.tape.test.js │ └── program.test.js ├── models ├── crudOperations.js ├── db.js ├── userModels.js └── users.js ├── package.json ├── property-tests └── program.test.js ├── routes └── index.js ├── static ├── build │ ├── react-bootstrap.min.js │ ├── react-dom.min.js │ ├── react.min.js │ ├── software-testing.css │ ├── software-testing.css.map │ └── symbol-defs.svg ├── js │ ├── actions │ │ └── index.js │ ├── components │ │ ├── App.jsx │ │ ├── CodeCraftsmanship.jsx │ │ ├── Main.jsx │ │ ├── UserDetails.jsx │ │ └── Users.jsx │ ├── constants │ │ └── index.js │ ├── data │ │ └── index.js │ ├── reducers │ │ ├── index.js │ │ ├── userDetailInformation.js │ │ └── users.js │ ├── store │ │ └── index.js │ └── utils │ │ └── ajax.js └── scss │ ├── software-testing.scss │ ├── userDetail.scss │ └── users.scss ├── tdd ├── instructions.md ├── solution │ ├── program.js │ └── tdd-cycle │ │ ├── cycle1 │ │ ├── program.js │ │ └── program.test.js │ │ ├── cycle2 │ │ ├── program.js │ │ └── program.test.js │ │ ├── cycle3 │ │ ├── program.js │ │ └── program.test.js │ │ └── cyclefinal │ │ ├── program.js │ │ └── program.test.js └── tdd-cycle │ ├── cycle1 │ ├── program.js │ └── program.test.js │ ├── cycle2 │ ├── program.js │ └── program.test.js │ ├── cycle3 │ ├── program.js │ └── program.test.js │ └── cyclefinal │ ├── program.js │ └── program.test.js ├── test-fixtures ├── program.test.js └── solution │ └── program.test.js ├── unit-test ├── exercises │ ├── concatAll │ │ └── concatAll.js │ ├── concatMap │ │ └── concatMap.js │ ├── filter │ │ └── filter.js │ └── map │ │ └── map.js ├── instructions.md ├── program.test.js └── solution │ └── program.test.js ├── users └── users.js ├── views ├── error.hbs └── index.hbs └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: CPfB9RcpnKUcOHwgfdWqC1ODTg5LVTYZ5 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | NODE_ENV=development 2 | PORT=3000 -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/app.js -------------------------------------------------------------------------------- /bdd/exercises/findIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/exercises/findIndex.js -------------------------------------------------------------------------------- /bdd/exercises/findInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/exercises/findInput.js -------------------------------------------------------------------------------- /bdd/exercises/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/exercises/zip.js -------------------------------------------------------------------------------- /bdd/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/instructions.md -------------------------------------------------------------------------------- /bdd/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/program.test.js -------------------------------------------------------------------------------- /bdd/solution/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/bdd/solution/program.test.js -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/book.json -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/config/config.js -------------------------------------------------------------------------------- /constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/constants/constants.js -------------------------------------------------------------------------------- /crudOperations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/crudOperations/index.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/bdd/bdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/bdd/bdd.md -------------------------------------------------------------------------------- /docs/e2e/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/e2e/e2e.md -------------------------------------------------------------------------------- /docs/fixtures/fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/fixtures/fixtures.md -------------------------------------------------------------------------------- /docs/integration/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/integration/integration.md -------------------------------------------------------------------------------- /docs/mocking/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/mocking/mocking.md -------------------------------------------------------------------------------- /docs/property/property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/property/property.md -------------------------------------------------------------------------------- /docs/tdd/tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/tdd/tdd.md -------------------------------------------------------------------------------- /docs/unit/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/docs/unit/unit.md -------------------------------------------------------------------------------- /end-to-end-tests/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/instructions.md -------------------------------------------------------------------------------- /end-to-end-tests/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/nightwatch.conf.js -------------------------------------------------------------------------------- /end-to-end-tests/nightwatch.runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/nightwatch.runner.js -------------------------------------------------------------------------------- /end-to-end-tests/nightwatch/codeCraftsmanshipSaturdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/nightwatch/codeCraftsmanshipSaturdays.js -------------------------------------------------------------------------------- /end-to-end-tests/page-objects/codeCraftsmanshipSaturdaysPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/page-objects/codeCraftsmanshipSaturdaysPage.js -------------------------------------------------------------------------------- /end-to-end-tests/solution/nightwatch/nightwatch.solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/solution/nightwatch/nightwatch.solution.js -------------------------------------------------------------------------------- /end-to-end-tests/solution/nightwatch/nightwatch.solution.page.objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/end-to-end-tests/solution/nightwatch/nightwatch.solution.page.objects.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icomoon/PNG/arrow-down-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-down-left.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-down-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-down-right.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-down6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-down6.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left2.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left3.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left4.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left5.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-left6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-left6.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-right3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-right3.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-right5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-right5.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-right6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-right6.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up-left.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up-right.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up2.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up3.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up4.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up5.png -------------------------------------------------------------------------------- /icomoon/PNG/arrow-up6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/arrow-up6.png -------------------------------------------------------------------------------- /icomoon/PNG/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/bin.png -------------------------------------------------------------------------------- /icomoon/PNG/bin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/bin2.png -------------------------------------------------------------------------------- /icomoon/PNG/box-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/box-add.png -------------------------------------------------------------------------------- /icomoon/PNG/bubble-dots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/bubble-dots2.png -------------------------------------------------------------------------------- /icomoon/PNG/bubble7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/bubble7.png -------------------------------------------------------------------------------- /icomoon/PNG/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cart.png -------------------------------------------------------------------------------- /icomoon/PNG/cart4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cart4.png -------------------------------------------------------------------------------- /icomoon/PNG/checkbox-checked2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/checkbox-checked2.png -------------------------------------------------------------------------------- /icomoon/PNG/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/checkmark.png -------------------------------------------------------------------------------- /icomoon/PNG/circle-down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/circle-down2.png -------------------------------------------------------------------------------- /icomoon/PNG/circle-up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/circle-up2.png -------------------------------------------------------------------------------- /icomoon/PNG/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cog.png -------------------------------------------------------------------------------- /icomoon/PNG/cog7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cog7.png -------------------------------------------------------------------------------- /icomoon/PNG/credit-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/credit-card.png -------------------------------------------------------------------------------- /icomoon/PNG/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cross.png -------------------------------------------------------------------------------- /icomoon/PNG/cross2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cross2.png -------------------------------------------------------------------------------- /icomoon/PNG/cross3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/cross3.png -------------------------------------------------------------------------------- /icomoon/PNG/enlarge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/enlarge2.png -------------------------------------------------------------------------------- /icomoon/PNG/enlarge7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/enlarge7.png -------------------------------------------------------------------------------- /icomoon/PNG/facebook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/facebook2.png -------------------------------------------------------------------------------- /icomoon/PNG/file-check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/file-check2.png -------------------------------------------------------------------------------- /icomoon/PNG/folder-plus4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/folder-plus4.png -------------------------------------------------------------------------------- /icomoon/PNG/folder-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/folder-remove.png -------------------------------------------------------------------------------- /icomoon/PNG/folder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/folder3.png -------------------------------------------------------------------------------- /icomoon/PNG/google-plus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/google-plus2.png -------------------------------------------------------------------------------- /icomoon/PNG/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/home.png -------------------------------------------------------------------------------- /icomoon/PNG/home4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/home4.png -------------------------------------------------------------------------------- /icomoon/PNG/lock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/lock2.png -------------------------------------------------------------------------------- /icomoon/PNG/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/pencil.png -------------------------------------------------------------------------------- /icomoon/PNG/pencil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/pencil2.png -------------------------------------------------------------------------------- /icomoon/PNG/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/play.png -------------------------------------------------------------------------------- /icomoon/PNG/play2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/play2.png -------------------------------------------------------------------------------- /icomoon/PNG/plus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/plus3.png -------------------------------------------------------------------------------- /icomoon/PNG/rss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/rss2.png -------------------------------------------------------------------------------- /icomoon/PNG/shrink7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/shrink7.png -------------------------------------------------------------------------------- /icomoon/PNG/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/skype.png -------------------------------------------------------------------------------- /icomoon/PNG/spinner10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/spinner10.png -------------------------------------------------------------------------------- /icomoon/PNG/spinner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/spinner3.png -------------------------------------------------------------------------------- /icomoon/PNG/spinner7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/spinner7.png -------------------------------------------------------------------------------- /icomoon/PNG/spinner9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/spinner9.png -------------------------------------------------------------------------------- /icomoon/PNG/stack3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/stack3.png -------------------------------------------------------------------------------- /icomoon/PNG/tumblr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/tumblr2.png -------------------------------------------------------------------------------- /icomoon/PNG/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/twitter.png -------------------------------------------------------------------------------- /icomoon/PNG/unlocked2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/unlocked2.png -------------------------------------------------------------------------------- /icomoon/PNG/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/user3.png -------------------------------------------------------------------------------- /icomoon/PNG/user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/user4.png -------------------------------------------------------------------------------- /icomoon/PNG/user5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/user5.png -------------------------------------------------------------------------------- /icomoon/PNG/user6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/PNG/user6.png -------------------------------------------------------------------------------- /icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/Read Me.txt -------------------------------------------------------------------------------- /icomoon/SVG/arrow-down-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-down-left.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-down-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-down-right.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-down6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-down6.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left2.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left3.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left4.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left5.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-left6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-left6.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-right3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-right3.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-right5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-right5.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-right6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-right6.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up-left.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up-right.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up2.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up3.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up4.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up5.svg -------------------------------------------------------------------------------- /icomoon/SVG/arrow-up6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/arrow-up6.svg -------------------------------------------------------------------------------- /icomoon/SVG/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/bin.svg -------------------------------------------------------------------------------- /icomoon/SVG/bin2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/bin2.svg -------------------------------------------------------------------------------- /icomoon/SVG/box-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/box-add.svg -------------------------------------------------------------------------------- /icomoon/SVG/bubble-dots2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/bubble-dots2.svg -------------------------------------------------------------------------------- /icomoon/SVG/bubble7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/bubble7.svg -------------------------------------------------------------------------------- /icomoon/SVG/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cart.svg -------------------------------------------------------------------------------- /icomoon/SVG/cart4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cart4.svg -------------------------------------------------------------------------------- /icomoon/SVG/checkbox-checked2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/checkbox-checked2.svg -------------------------------------------------------------------------------- /icomoon/SVG/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/checkmark.svg -------------------------------------------------------------------------------- /icomoon/SVG/circle-down2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/circle-down2.svg -------------------------------------------------------------------------------- /icomoon/SVG/circle-up2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/circle-up2.svg -------------------------------------------------------------------------------- /icomoon/SVG/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cog.svg -------------------------------------------------------------------------------- /icomoon/SVG/cog7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cog7.svg -------------------------------------------------------------------------------- /icomoon/SVG/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/credit-card.svg -------------------------------------------------------------------------------- /icomoon/SVG/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cross.svg -------------------------------------------------------------------------------- /icomoon/SVG/cross2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cross2.svg -------------------------------------------------------------------------------- /icomoon/SVG/cross3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/cross3.svg -------------------------------------------------------------------------------- /icomoon/SVG/enlarge2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/enlarge2.svg -------------------------------------------------------------------------------- /icomoon/SVG/enlarge7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/enlarge7.svg -------------------------------------------------------------------------------- /icomoon/SVG/facebook2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/facebook2.svg -------------------------------------------------------------------------------- /icomoon/SVG/file-check2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/file-check2.svg -------------------------------------------------------------------------------- /icomoon/SVG/folder-plus4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/folder-plus4.svg -------------------------------------------------------------------------------- /icomoon/SVG/folder-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/folder-remove.svg -------------------------------------------------------------------------------- /icomoon/SVG/folder3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/folder3.svg -------------------------------------------------------------------------------- /icomoon/SVG/google-plus2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/google-plus2.svg -------------------------------------------------------------------------------- /icomoon/SVG/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/home.svg -------------------------------------------------------------------------------- /icomoon/SVG/home4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/home4.svg -------------------------------------------------------------------------------- /icomoon/SVG/lock2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/lock2.svg -------------------------------------------------------------------------------- /icomoon/SVG/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/pencil.svg -------------------------------------------------------------------------------- /icomoon/SVG/pencil2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/pencil2.svg -------------------------------------------------------------------------------- /icomoon/SVG/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/play.svg -------------------------------------------------------------------------------- /icomoon/SVG/play2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/play2.svg -------------------------------------------------------------------------------- /icomoon/SVG/plus3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/plus3.svg -------------------------------------------------------------------------------- /icomoon/SVG/rss2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/rss2.svg -------------------------------------------------------------------------------- /icomoon/SVG/shrink7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/shrink7.svg -------------------------------------------------------------------------------- /icomoon/SVG/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/skype.svg -------------------------------------------------------------------------------- /icomoon/SVG/spinner10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/spinner10.svg -------------------------------------------------------------------------------- /icomoon/SVG/spinner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/spinner3.svg -------------------------------------------------------------------------------- /icomoon/SVG/spinner7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/spinner7.svg -------------------------------------------------------------------------------- /icomoon/SVG/spinner9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/spinner9.svg -------------------------------------------------------------------------------- /icomoon/SVG/stack3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/stack3.svg -------------------------------------------------------------------------------- /icomoon/SVG/tumblr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/tumblr2.svg -------------------------------------------------------------------------------- /icomoon/SVG/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/twitter.svg -------------------------------------------------------------------------------- /icomoon/SVG/unlocked2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/unlocked2.svg -------------------------------------------------------------------------------- /icomoon/SVG/user3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/user3.svg -------------------------------------------------------------------------------- /icomoon/SVG/user4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/user4.svg -------------------------------------------------------------------------------- /icomoon/SVG/user5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/user5.svg -------------------------------------------------------------------------------- /icomoon/SVG/user6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/SVG/user6.svg -------------------------------------------------------------------------------- /icomoon/demo-external-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/demo-external-svg.html -------------------------------------------------------------------------------- /icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/demo.html -------------------------------------------------------------------------------- /icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/selection.json -------------------------------------------------------------------------------- /icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/style.css -------------------------------------------------------------------------------- /icomoon/svgxuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/svgxuse.js -------------------------------------------------------------------------------- /icomoon/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/icomoon/symbol-defs.svg -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /integration-tests/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/integration-tests/instructions.md -------------------------------------------------------------------------------- /integration-tests/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/integration-tests/program.test.js -------------------------------------------------------------------------------- /integration-tests/solution/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/integration-tests/solution/program.test.js -------------------------------------------------------------------------------- /mocks-stubs-spies/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/instructions.md -------------------------------------------------------------------------------- /mocks-stubs-spies/program.tape.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/program.tape.test.js -------------------------------------------------------------------------------- /mocks-stubs-spies/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/program.test.js -------------------------------------------------------------------------------- /mocks-stubs-spies/solution/node-nock/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/solution/node-nock/program.test.js -------------------------------------------------------------------------------- /mocks-stubs-spies/solution/sinon/program.tape.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/solution/sinon/program.tape.test.js -------------------------------------------------------------------------------- /mocks-stubs-spies/solution/sinon/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/mocks-stubs-spies/solution/sinon/program.test.js -------------------------------------------------------------------------------- /models/crudOperations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/models/crudOperations.js -------------------------------------------------------------------------------- /models/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/models/db.js -------------------------------------------------------------------------------- /models/userModels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/models/userModels.js -------------------------------------------------------------------------------- /models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/models/users.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/package.json -------------------------------------------------------------------------------- /property-tests/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/property-tests/program.test.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/routes/index.js -------------------------------------------------------------------------------- /static/build/react-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/react-bootstrap.min.js -------------------------------------------------------------------------------- /static/build/react-dom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/react-dom.min.js -------------------------------------------------------------------------------- /static/build/react.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/react.min.js -------------------------------------------------------------------------------- /static/build/software-testing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/software-testing.css -------------------------------------------------------------------------------- /static/build/software-testing.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/software-testing.css.map -------------------------------------------------------------------------------- /static/build/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/build/symbol-defs.svg -------------------------------------------------------------------------------- /static/js/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/actions/index.js -------------------------------------------------------------------------------- /static/js/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/components/App.jsx -------------------------------------------------------------------------------- /static/js/components/CodeCraftsmanship.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/components/CodeCraftsmanship.jsx -------------------------------------------------------------------------------- /static/js/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/components/Main.jsx -------------------------------------------------------------------------------- /static/js/components/UserDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/components/UserDetails.jsx -------------------------------------------------------------------------------- /static/js/components/Users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/components/Users.jsx -------------------------------------------------------------------------------- /static/js/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/constants/index.js -------------------------------------------------------------------------------- /static/js/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/data/index.js -------------------------------------------------------------------------------- /static/js/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/reducers/index.js -------------------------------------------------------------------------------- /static/js/reducers/userDetailInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/reducers/userDetailInformation.js -------------------------------------------------------------------------------- /static/js/reducers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/reducers/users.js -------------------------------------------------------------------------------- /static/js/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/store/index.js -------------------------------------------------------------------------------- /static/js/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/js/utils/ajax.js -------------------------------------------------------------------------------- /static/scss/software-testing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/scss/software-testing.scss -------------------------------------------------------------------------------- /static/scss/userDetail.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/scss/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/static/scss/users.scss -------------------------------------------------------------------------------- /tdd/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/instructions.md -------------------------------------------------------------------------------- /tdd/solution/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/program.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle1/program.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle1/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cycle1/program.test.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle2/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cycle2/program.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle2/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cycle2/program.test.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle3/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cycle3/program.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cycle3/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cycle3/program.test.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cyclefinal/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cyclefinal/program.js -------------------------------------------------------------------------------- /tdd/solution/tdd-cycle/cyclefinal/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/solution/tdd-cycle/cyclefinal/program.test.js -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle1/program.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle1/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/tdd-cycle/cycle1/program.test.js -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle2/program.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle2/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/tdd-cycle/cycle2/program.test.js -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle3/program.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd/tdd-cycle/cycle3/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/tdd-cycle/cycle3/program.test.js -------------------------------------------------------------------------------- /tdd/tdd-cycle/cyclefinal/program.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd/tdd-cycle/cyclefinal/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/tdd/tdd-cycle/cyclefinal/program.test.js -------------------------------------------------------------------------------- /test-fixtures/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/test-fixtures/program.test.js -------------------------------------------------------------------------------- /test-fixtures/solution/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/test-fixtures/solution/program.test.js -------------------------------------------------------------------------------- /unit-test/exercises/concatAll/concatAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/exercises/concatAll/concatAll.js -------------------------------------------------------------------------------- /unit-test/exercises/concatMap/concatMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/exercises/concatMap/concatMap.js -------------------------------------------------------------------------------- /unit-test/exercises/filter/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/exercises/filter/filter.js -------------------------------------------------------------------------------- /unit-test/exercises/map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/exercises/map/map.js -------------------------------------------------------------------------------- /unit-test/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/instructions.md -------------------------------------------------------------------------------- /unit-test/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/program.test.js -------------------------------------------------------------------------------- /unit-test/solution/program.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/unit-test/solution/program.test.js -------------------------------------------------------------------------------- /users/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/users/users.js -------------------------------------------------------------------------------- /views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/views/error.hbs -------------------------------------------------------------------------------- /views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/views/index.hbs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbelmont/software-testing-workshop/HEAD/webpack.config.js --------------------------------------------------------------------------------