murrgelb
Efx is a library to define and test side effects declaratively. It is basically a very focused mocking framework, reducing implementation overhead and focusing on testable code.
The special thing about it is, that it uses the fairly new ancestor-keys from the process dictionary to track down the bindings for tests event for child-processes and therefore, more tests can be implemented asynchronously.
If you are interested, need more rational or just want to skim the code, you can find out more on our github. We are looking forward to some feedback!
https://github.com/bravobike/efx
The library is also available on hex: efx | Hex
Trending in Announcing
WebAuthnLiveComponent WebAuthnComponents
See this post about renaming the package.
Passwordless authentication for Phoenix LiveView app...
New
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi everyone,
I’ve been working on this protobuf library for 3 years. We use it in the company I work for, EasyMile, to communicate with ...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
I’ll shortly be launching Text, a nascent text analysis library.
Current functionality
In this early version (not ready for prime time) ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
I love Elixir. It’s one of 2 programming languages I’ve ever fallen in love with.
But I don’t use it anymore.
Serverless was the promis...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
cmo
Does this mean there is a minimum version of OTP required?
sodapopcan
To ask a fairly obviously question, the idea is that any side-effect functions (or just ones you want to test) can be defined with
defeffect? SoMyModulein the README example is the implementation/domain code? If so that’s super cool.dimitarvp
I am not sure I get the idea at all… are effects completely opt-in and whatever the dev says are effects? I’d expect a library like this to scan my code for e.g.
File.writeand automatically tag the function calling it as effectful.But I am likely severely misunderstanding here.
sodapopcan
I’m glad I’m not the only one who was slightly confused! I think the README could be slightly more explicit in the examples.
But yes, I’ve just been playing with it in a demo app and you simply define your application’s functions with
defeffectthen you can mock them in tests withbind. It’s not auto-flagging side-effects for you. It feels pretty nice. I kind of want to usedefeffectfor all side-effect functions even if I don’t mock them in tests (though I probably won’t).cmo
Yeah, there’s a small example in tests/support.
sodapopcan
I think it would be clearer if the examples actually had effectul code in the bodies just to drive the point home, especially for those of us who skim code examples on first read-through of READMEs. But like, I figured it out
sodapopcan
There are also a couple of small gotchas not explicitly documented:
@specs aren’t optional (which makes sense) and zero-arity functions are required to be defined with empty()or else you get a cryptic error. I opened an issue about the latter.dimitarvp
So it’s more or less a mocking library?
sodapopcan
Yes indeed
ouven
It is a mocking library, that doesn‘t need global binding for your test cases. So all mocking and preparation happens directly in your test code. No need for configs or anything else.
I started using it in my projects and it makes testing clearer and easier.
Kudos to @murrgelb