From e336d613049eff0430469f7ed853449bcb7bb4f1 Mon Sep 17 00:00:00 2001 From: gitnickolson Date: Mon, 10 Nov 2025 13:32:23 +0100 Subject: [PATCH] Fix wrong include in README example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69f89ee..9ce327e 100644 --- a/README.md +++ b/README.md @@ -672,10 +672,10 @@ To make tests more expressive, Ears provides a custom RSpec matcher that allows Include the matcher by requiring `ears/testing` in your RSpec tests and including the helper module: ```ruby -require 'ears/testing' +require 'ears/testing/matchers' RSpec.describe MyPublisher do - include Ears::Testing::TestHelper + include Ears::Testing::Matchers before { mock_ears('events') } after { ears_reset! }