module RSpec::Matchers::BuiltIn

Container module for all built-in matchers. The matcher classes are here (rather than directly under ‘RSpec::Matchers`) in order to prevent name collisions, since `RSpec::Matchers` gets included into the user’s namespace.

Autoloading is used to delay when the matcher classes get loaded, allowing rspec-matchers to boot faster, and avoiding loading matchers the user is not using.

Constants

StartAndEndWith

@api private Base class for the ‘end_with` and `start_with` matchers. Not intended to be instantiated directly.