Neiro | Functional programming, software architecture

Posts tagged "testing":

Asynchronous testing in Elixir with Mox

29 Jul 2018

Testing in Elixir is pretty neat. You can easily test anything written, you have instruments like ExUnit or ESpec, you can practice TDD and more and more. Functional programming paradigm helps you a lot to make your testing even simpler by forcing you to use pure, small functions that will be pleasant to test. Concurrency of Elixir allows you to run all your tests asynchronously and blazingly fast.

(...)
Tags: elixir testing
Other posts