I’m running an MX-Linux environment (Debian distro) and have installed (via asdf) and been using Erlang/Elixir for quite some time. I decided to try out the Common Test framework but it seems the framework isn’t present on my machine:
$ erl
Erlang/OTP 27 [erts-15.2] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [jit:ns] [sharing-preserving]
Eshell V15.2 (press Ctrl+G to abort, type help(). for help)
1> application:loaded_applications().
[{stdlib,"ERTS CXC 138 10","6.2"},
{kernel,"ERTS CXC 138 10","10.2"}]
2>
Apparently common_test is supposed to appear if the framework is available.
How do I get Common Test framework installed on my machine?