Skip Navigation

Some Elixir testing Tricks

pdx.su Some Elixir Testing Tricks

Testing in Elixir is pretty great. ExUnit, combined with the functional nature of Elixir, makes it very easy to test almost everything in your codebase. However, it is very easy for boilerplate to creep into your tests. Common setup patterns, similar assertions, and more can quickly make your test s...

ExUnit is wonderful, and the functional paradigms that underpin Elixir let us write extremely complex tests in a fraction of the code that would be needed in OOP testing frameworks like RSpec.

But it's not all wine and roses. Tests can quickly accrue tons of boilerplate and repetition.

Using some Elixir features, you can cut down on these, and make tests even nicer to write.

0
0 comments