├── .gitignore ├── README.md └── example ├── .formatter.exs ├── .gitignore ├── README.md ├── config └── config.exs ├── lib └── frame.ex ├── mix.exs ├── mix.lock └── test ├── frame_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/README.md -------------------------------------------------------------------------------- /example/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/.formatter.exs -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # Property Based Testing Examples 2 | 3 | -------------------------------------------------------------------------------- /example/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/config/config.exs -------------------------------------------------------------------------------- /example/lib/frame.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/lib/frame.ex -------------------------------------------------------------------------------- /example/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/mix.exs -------------------------------------------------------------------------------- /example/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/mix.lock -------------------------------------------------------------------------------- /example/test/frame_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/learn-property-based-testing/HEAD/example/test/frame_test.exs -------------------------------------------------------------------------------- /example/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------