Alex Martsinovich

Results 8 issues of Alex Martsinovich

Fixes: #20 Some notes on the rootcause and solution: `contain_exactly` is one of those matchers that stores some intermediate computations internally. And hence we reuse this matcher object throughout the...

In order to reproduce this you need to: 1. wait for a block... 2. ... yielding an array of values of different types ... 3. ... to `contain_exactly` correct values...

While most of the time elixir errors have `message` field, this isn't a requirement. Good thing is that implementing `message/1` callback _is_ a requirement, so we can use `Exception.message/1`

We've run into an issue recently when we were getting `** (RuntimeError) function for default_url: {Elixir.MyModule, graphiql_default_url} is not exported with arity 1 or 0` error. Both the module and...

This PR bumps version to 0.4.0 and adds changelog for versions 0.2.0, 0.3.0 and 0.4.0. I used [Finch changelog](https://github.com/sneako/finch/blob/main/CHANGELOG.md) as an example. The plan is to: - [ ] Make...

### Summary `:empty` and `:not_empty` filters doesn't seem to be working for SQLite DB ### Steps to reproduce Setup flop for a project with SQLite DB and try to filter...

bug

Context: https://github.com/woylie/flop/issues/446#issuecomment-1895016224 This PR changes test setup so that it could run against multiple databases. I copied the `ecto_sql` [approach](https://github.com/elixir-ecto/ecto_sql?tab=readme-ov-file#running-tests) here. A quick summary: 1. Tests are not split into...

Hi 👋 and thank you for the amazing library! This PR proposes a little code reshuffling in order to hopefully make main interface more flexible. ### Problem I want to...