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
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
The repo is at GitHub - cyberchitta/openai_ex: Community maintained Elixir library for OpenAI API · GitHub.
Docs are at OpenaiEx User Gu...
New
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly.
One of i...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Other Trending Topics
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
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
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










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