You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TranzactIO looks really interesting library, great work! 🙂 I'm looking at solving exactly the kind of problem you've described where I can complete my transaction after performing multiple DB operations and various bits if business logic.
My question is around testing, is there a recommended approach when using TranzactIO? If my database classes return a RIO[Connection, A] and my core service logic completes that transaction, resulting in a RIO[Database, A] it would be great to be able to provide implementations of Connection and Database that don't require a running SQL database.
The text was updated successfully, but these errors were encountered:
I haven't missed that and I think it's a great idea, I just don't have had the time yet. I thought I could work on it today, but issue 18 took priority.
TranzactIO looks really interesting library, great work! 🙂 I'm looking at solving exactly the kind of problem you've described where I can complete my transaction after performing multiple DB operations and various bits if business logic.
My question is around testing, is there a recommended approach when using TranzactIO? If my database classes return a
RIO[Connection, A]
and my core service logic completes that transaction, resulting in aRIO[Database, A]
it would be great to be able to provide implementations ofConnection
andDatabase
that don't require a running SQL database.The text was updated successfully, but these errors were encountered: