#testfixtures
Test for tests you say? Oh yes, got some of them...

github.com/simplistix/t...
testfixtures/testfixtures/tests at master · simplistix/testfixtures
testfixtures is a collection of helpers and mock objects that are useful when writing automated tests in Python. - simplistix/testfixtures
github.com
February 19, 2025 at 8:32 AM
一週間の Android 開発関連ニュースをお届けする AndroidDagashi、第413回を公開しました!

Paging KMP対応, QodanaでAndroid Kotlin品質向上, TestFixtures, Play Consoleで収益化推奨アクション, KMP開発体験でモノレポ化, ACP Agent Registry公開, など

https://androiddagashi.github.io/issue/413-2026-02-01
413 2026-02-01
Paging KMP対応, QodanaでAndroid Kotlin品質向上, TestFixtures, Play Consoleで収益化推奨アクション, KMP開発体験でモノレポ化, ACP Agent Registry公開, など
androiddagashi.github.io
February 1, 2026 at 11:13 AM
We're excited to be joining the @bsky.app platform!

Let's introduce ourselves.

At Devtank we design, manufacture and provide solutions for businesses including:

#testandmeasurement
#automation
#iotsolutions
#testfixtures

housing our work within two brands HILTOP and OpenSmartMonitor.
January 17, 2025 at 10:44 AM
A new release of testfixtures has landed today with something we wanted to do for a long time!

Tests were refactored into a separate Go module, and with this we reduced the number of dependencies on the main `go.mod` from several to only two!

github.com/go-testfixtu...
Release v3.18.0 · go-testfixtures/testfixtures
In this release, we drastically reduced the number of dependencies of the library. We refactored the tests into a separate Go module, and means we don't need to import the SQL drivers on the main g...
github.com
August 24, 2025 at 2:00 PM
<a href="https://tech.repro.io/entry/2024/07/30/090000" class="hover:underline text-blue-600 dark:text-sky-400 no-card-link" target="_blank" rel="noopener" data-link="bsky">tech.repro.io/entry...
Go で実 DB を使ったテストをしてみた - Repro Tech Blog
Go で実 DB を使ったテストをしてみた - Repro Tech Blog
はじめに こんにちは。Repro で新規事業の開発をしている冨永です。 我々のチームでは主に、ユーザーのイベント集計を定期的にバッチ処理するフローで Go を採用しています。 Go で RDB など外部依存のあるコンポーネントを扱うテストをする際 interface などで抽象化しモックすることが多かったのですが、実際にその部分の挙動が確かめられないという不安がありました。 そこで今回は testfixtures というライブラリを使って実際に DB アクセスするテストを書いてみたのでその紹介です。 きっかけ まずはチーム内でテストに関する共通認識を作るためワークショップを実施しました。 各々…
tech.repro.io
July 31, 2024 at 5:49 AM
5/ Example:

Use @Import(IntegrationTestConfig.class) and @TestPropertySource(locations = "classpath:test-application.properties"). Inject beans like TokenProvider or TestFixtures for test-specific needs.
November 15, 2024 at 4:12 PM
Massive testfixtures.readthedocs.io release, but how do I tell the LLMs?
Added support for loguru, structlog, polars and pandas.

Change log: testfixtures.readthedocs.io/en/latest/ch...
testfixtures 12.0.0 documentation
testfixtures.readthedocs.io
May 23, 2026 at 8:33 AM
📊 sequence() - Flexible sequence comparisons

Full control over ordering and partial matching:

from testfixtures import sequence

compare(results, expected=sequence(partial=True, ordered=False)(
Record(id=3),
Record(id=5),
]))
October 29, 2025 at 9:05 AM
🔄 unordered() - Order-independent exact matching

Database queries don't guarantee order? No problem:

from testfixtures import unordered

compare(query_results, expected=unordered([
User(id=1, name='Alice'),
User(id=3, name='Charlie'),
]))
October 29, 2025 at 9:05 AM
✅ contains() - Check only specific items are present:

from testfixtures import contains
compare(event_log, expected=contains([
Event(type='user.login'),
Event(type='purchase.completed'),
]))

For logging, though, check out LogCapture: testfixtures.readthedocs.io/en/latest/lo...)
Testing logging - testfixtures 10.0.0 documentation
Python includes a logging package, and while it is widely used, many people assume that logging calls do not need to be tested or find the prospect too daunting. To help with this, testfixtures…
testfixtures.readthedocs.io
October 29, 2025 at 9:05 AM

🎯 like() - Partial object comparisons:

from testfixtures import compare, like
compare(api.get_users(), expected = [like(User, email='alice@example.com', role='admin')])

Don't worry about attributes you don't care about!
October 29, 2025 at 9:05 AM
Testfixtures 10 is out! 🎉

If you've ever struggled with writing clear, maintainable test assertions in Python - comparing complex objects, checking API responses, or validating database results - testfixtures can help. 🧵

testfixtures.readthedocs.io/en/latest/
testfixtures 10.0.0 documentation
testfixtures.readthedocs.io
October 29, 2025 at 9:05 AM
also, testfixtures v9 is out now, with full, checked and py.typed annotations:

If you want a bunch of handy #python testing tools, have a look:

testfixtures.readthedocs.io/en/latest/ch...
Changes - testfixtures 9.0.1 documentation
testfixtures.readthedocs.io
July 8, 2025 at 3:06 PM
testfixtures 8.0.0 released! It's a collection of #python testing helpers and mock objects - this release drops Python 3.6, adds 3.12, has improvments for TempDirectory and bugfixes for Replacer - full change log: testfixtures.readthedocs.io/en/latest/ch...
February 16, 2024 at 5:53 PM
A new AI review! go-testfixtures/testfixtures ⭐4.2/5.0
go-testfixtures/testfixtures is a mature, widely-used Go library (and companion CLI) for loading YAML-defined fixtures into real SQL databases during tests.
https://gitrated.com/go-testfixtures/testfixtures
June 12, 2026 at 2:17 PM
python-testfixtures 9.0.1-1 any A collection of helpers and mock objects that are useful when writing unit tests or doc tests

#Extra #any

Origin | Interest | Match
Arch Linux - python-testfixtures 9.0.0-1 (any)
archlinux.org
August 9, 2025 at 6:24 PM