├── .gitignore ├── LICENSE ├── README.md ├── doc ├── diagram.jpg ├── diagram_thumbnail.jpg └── example_run.gif ├── elm.json ├── examples └── vending-machine │ ├── .gitignore │ ├── elm.json │ ├── src │ └── VendingMachine.elm │ └── tests │ └── Tests.elm └── src ├── ArchitectureTest.elm └── Test └── Runner └── Failure └── Extra.elm /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | node_modules/ 3 | index.html 4 | yarn.lock 5 | package.json 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/README.md -------------------------------------------------------------------------------- /doc/diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/doc/diagram.jpg -------------------------------------------------------------------------------- /doc/diagram_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/doc/diagram_thumbnail.jpg -------------------------------------------------------------------------------- /doc/example_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/doc/example_run.gif -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/elm.json -------------------------------------------------------------------------------- /examples/vending-machine/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/vending-machine/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/examples/vending-machine/elm.json -------------------------------------------------------------------------------- /examples/vending-machine/src/VendingMachine.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/examples/vending-machine/src/VendingMachine.elm -------------------------------------------------------------------------------- /examples/vending-machine/tests/Tests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/examples/vending-machine/tests/Tests.elm -------------------------------------------------------------------------------- /src/ArchitectureTest.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/src/ArchitectureTest.elm -------------------------------------------------------------------------------- /src/Test/Runner/Failure/Extra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janiczek/architecture-test/HEAD/src/Test/Runner/Failure/Extra.elm --------------------------------------------------------------------------------