├── .document ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_rspec_base.yml ├── .rubocop_todo.yml ├── .yardopts ├── BUILD_DETAIL.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Changelog.md ├── DEV-README.md ├── DEVELOPMENT.md ├── Gemfile ├── Gemfile-custom.sample ├── Guardfile ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── REPORT_TEMPLATE.md ├── Rakefile ├── SECURITY.md ├── Should.md ├── benchmarks ├── 2.x_vs_3.x_matcher_dsl_implementation.rb ├── autoload_v_require.rb ├── caller_vs_raise_for_backtrace.rb ├── cloning_matchers.rb ├── count_vs_select_size.rb ├── default_messages_as_methods_v_blocks.rb ├── example_spec.rb ├── gsub_vs_tr_single_character.rb ├── include_matcher.rb ├── include_v_superclass.rb ├── match_array │ ├── failing_with_distinct_items.rb │ ├── failing_with_duplicate_items.rb │ ├── passing_with_distinct_items.rb │ ├── passing_with_duplicate_items.rb │ └── rubyprof │ │ └── passing_with_distinct_items.rb ├── matcher_dsl_vs_classes.rb ├── method_to_proc.rb ├── output_stringio_vs_tempfile.rb └── set_vs_array_include.rb ├── cucumber.yml ├── features ├── .nav ├── README.md ├── aggregating_failures.feature ├── built_in_matchers │ ├── README.md │ ├── all.feature │ ├── be.feature │ ├── be_within.feature │ ├── change.feature │ ├── comparisons.feature │ ├── contain_exactly.feature │ ├── cover.feature │ ├── end_with.feature │ ├── equality.feature │ ├── exist.feature │ ├── have_attributes.feature │ ├── include.feature │ ├── match.feature │ ├── output.feature │ ├── predicates.feature │ ├── raise_error.feature │ ├── respond_to.feature │ ├── satisfy.feature │ ├── start_with.feature │ ├── throw_symbol.feature │ ├── types.feature │ └── yield.feature ├── composing_matchers.feature ├── compound_expectations.feature ├── custom_matchers │ ├── access_running_example.feature │ ├── define_block_matcher.feature │ ├── define_diffable_matcher.feature │ ├── define_matcher.feature │ ├── define_matcher_outside_rspec.feature │ └── define_matcher_with_fluent_interface.feature ├── customized_message.feature ├── define_negated_matcher.feature ├── diffing.feature ├── implicit_docstrings.feature ├── step_definitions │ └── additional_cli_steps.rb ├── support │ ├── diff_lcs_versions.rb │ ├── disallow_certain_apis.rb │ ├── env.rb │ ├── rubinius.rb │ └── ruby_features.rb ├── syntax_configuration.feature └── test_frameworks │ └── minitest.feature ├── lib └── rspec │ ├── expectations.rb │ ├── expectations │ ├── block_snippet_extractor.rb │ ├── configuration.rb │ ├── expectation_target.rb │ ├── fail_with.rb │ ├── failure_aggregator.rb │ ├── handler.rb │ ├── minitest_integration.rb │ ├── syntax.rb │ └── version.rb │ ├── matchers.rb │ └── matchers │ ├── aliased_matcher.rb │ ├── built_in.rb │ ├── built_in │ ├── all.rb │ ├── base_matcher.rb │ ├── be.rb │ ├── be_between.rb │ ├── be_instance_of.rb │ ├── be_kind_of.rb │ ├── be_within.rb │ ├── change.rb │ ├── compound.rb │ ├── contain_exactly.rb │ ├── count_expectation.rb │ ├── cover.rb │ ├── eq.rb │ ├── eql.rb │ ├── equal.rb │ ├── exist.rb │ ├── has.rb │ ├── have_attributes.rb │ ├── include.rb │ ├── match.rb │ ├── operators.rb │ ├── output.rb │ ├── raise_error.rb │ ├── respond_to.rb │ ├── satisfy.rb │ ├── start_or_end_with.rb │ ├── throw_symbol.rb │ └── yield.rb │ ├── composable.rb │ ├── dsl.rb │ ├── english_phrasing.rb │ ├── fail_matchers.rb │ ├── generated_descriptions.rb │ ├── matcher_delegator.rb │ ├── matcher_protocol.rb │ └── multi_matcher_diff.rb ├── maintenance-branch ├── rspec-expectations.gemspec ├── script ├── ci_functions.sh ├── clone_all_rspec_repos ├── cucumber.sh ├── functions.sh ├── legacy_setup.sh ├── predicate_functions.sh ├── run_build ├── run_rubocop └── update_rubygems_and_install_bundler └── spec ├── rspec ├── expectations │ ├── block_snippet_extractor_spec.rb │ ├── configuration_spec.rb │ ├── expectation_target_spec.rb │ ├── extensions │ │ └── kernel_spec.rb │ ├── fail_with_spec.rb │ ├── failure_aggregator_spec.rb │ ├── handler_spec.rb │ ├── minitest_integration_spec.rb │ └── syntax_spec.rb ├── expectations_spec.rb ├── matchers │ ├── aliased_matcher_spec.rb │ ├── aliases_spec.rb │ ├── built_in │ │ ├── all_spec.rb │ │ ├── base_matcher_spec.rb │ │ ├── be_between_spec.rb │ │ ├── be_instance_of_spec.rb │ │ ├── be_kind_of_spec.rb │ │ ├── be_spec.rb │ │ ├── be_within_spec.rb │ │ ├── captures_spec.rb │ │ ├── change_spec.rb │ │ ├── compound_spec.rb │ │ ├── contain_exactly_spec.rb │ │ ├── cover_spec.rb │ │ ├── eq_spec.rb │ │ ├── eql_spec.rb │ │ ├── equal_spec.rb │ │ ├── exist_spec.rb │ │ ├── has_spec.rb │ │ ├── have_attributes_spec.rb │ │ ├── include_spec.rb │ │ ├── match_spec.rb │ │ ├── operators_spec.rb │ │ ├── output_spec.rb │ │ ├── raise_error_spec.rb │ │ ├── respond_to_spec.rb │ │ ├── satisfy_spec.rb │ │ ├── start_and_end_with_spec.rb │ │ ├── throw_symbol_spec.rb │ │ └── yield_spec.rb │ ├── composable_spec.rb │ ├── define_negated_matcher_spec.rb │ ├── description_generation_spec.rb │ ├── dsl_spec.rb │ ├── english_phrasing_spec.rb │ ├── legacy_spec.rb │ └── multi_matcher_diff_spec.rb └── matchers_spec.rb ├── spec_helper.rb └── support ├── matchers.rb └── shared_examples ├── block_matcher.rb ├── matcher.rb └── value_matcher.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.document -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --warnings 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_rspec_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.rubocop_rspec_base.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/.yardopts -------------------------------------------------------------------------------- /BUILD_DETAIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/BUILD_DETAIL.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Changelog.md -------------------------------------------------------------------------------- /DEV-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/DEV-README.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile-custom.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Gemfile-custom.sample -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Guardfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/README.md -------------------------------------------------------------------------------- /REPORT_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/REPORT_TEMPLATE.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Should.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/Should.md -------------------------------------------------------------------------------- /benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb -------------------------------------------------------------------------------- /benchmarks/autoload_v_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/autoload_v_require.rb -------------------------------------------------------------------------------- /benchmarks/caller_vs_raise_for_backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/caller_vs_raise_for_backtrace.rb -------------------------------------------------------------------------------- /benchmarks/cloning_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/cloning_matchers.rb -------------------------------------------------------------------------------- /benchmarks/count_vs_select_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/count_vs_select_size.rb -------------------------------------------------------------------------------- /benchmarks/default_messages_as_methods_v_blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/default_messages_as_methods_v_blocks.rb -------------------------------------------------------------------------------- /benchmarks/example_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/example_spec.rb -------------------------------------------------------------------------------- /benchmarks/gsub_vs_tr_single_character.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/gsub_vs_tr_single_character.rb -------------------------------------------------------------------------------- /benchmarks/include_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/include_matcher.rb -------------------------------------------------------------------------------- /benchmarks/include_v_superclass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/include_v_superclass.rb -------------------------------------------------------------------------------- /benchmarks/match_array/failing_with_distinct_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/match_array/failing_with_distinct_items.rb -------------------------------------------------------------------------------- /benchmarks/match_array/failing_with_duplicate_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/match_array/failing_with_duplicate_items.rb -------------------------------------------------------------------------------- /benchmarks/match_array/passing_with_distinct_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/match_array/passing_with_distinct_items.rb -------------------------------------------------------------------------------- /benchmarks/match_array/passing_with_duplicate_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/match_array/passing_with_duplicate_items.rb -------------------------------------------------------------------------------- /benchmarks/match_array/rubyprof/passing_with_distinct_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/match_array/rubyprof/passing_with_distinct_items.rb -------------------------------------------------------------------------------- /benchmarks/matcher_dsl_vs_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/matcher_dsl_vs_classes.rb -------------------------------------------------------------------------------- /benchmarks/method_to_proc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/method_to_proc.rb -------------------------------------------------------------------------------- /benchmarks/output_stringio_vs_tempfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/output_stringio_vs_tempfile.rb -------------------------------------------------------------------------------- /benchmarks/set_vs_array_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/benchmarks/set_vs_array_include.rb -------------------------------------------------------------------------------- /cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/cucumber.yml -------------------------------------------------------------------------------- /features/.nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/.nav -------------------------------------------------------------------------------- /features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/README.md -------------------------------------------------------------------------------- /features/aggregating_failures.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/aggregating_failures.feature -------------------------------------------------------------------------------- /features/built_in_matchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/README.md -------------------------------------------------------------------------------- /features/built_in_matchers/all.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/all.feature -------------------------------------------------------------------------------- /features/built_in_matchers/be.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/be.feature -------------------------------------------------------------------------------- /features/built_in_matchers/be_within.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/be_within.feature -------------------------------------------------------------------------------- /features/built_in_matchers/change.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/change.feature -------------------------------------------------------------------------------- /features/built_in_matchers/comparisons.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/comparisons.feature -------------------------------------------------------------------------------- /features/built_in_matchers/contain_exactly.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/contain_exactly.feature -------------------------------------------------------------------------------- /features/built_in_matchers/cover.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/cover.feature -------------------------------------------------------------------------------- /features/built_in_matchers/end_with.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/end_with.feature -------------------------------------------------------------------------------- /features/built_in_matchers/equality.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/equality.feature -------------------------------------------------------------------------------- /features/built_in_matchers/exist.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/exist.feature -------------------------------------------------------------------------------- /features/built_in_matchers/have_attributes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/have_attributes.feature -------------------------------------------------------------------------------- /features/built_in_matchers/include.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/include.feature -------------------------------------------------------------------------------- /features/built_in_matchers/match.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/match.feature -------------------------------------------------------------------------------- /features/built_in_matchers/output.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/output.feature -------------------------------------------------------------------------------- /features/built_in_matchers/predicates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/predicates.feature -------------------------------------------------------------------------------- /features/built_in_matchers/raise_error.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/raise_error.feature -------------------------------------------------------------------------------- /features/built_in_matchers/respond_to.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/respond_to.feature -------------------------------------------------------------------------------- /features/built_in_matchers/satisfy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/satisfy.feature -------------------------------------------------------------------------------- /features/built_in_matchers/start_with.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/start_with.feature -------------------------------------------------------------------------------- /features/built_in_matchers/throw_symbol.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/throw_symbol.feature -------------------------------------------------------------------------------- /features/built_in_matchers/types.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/types.feature -------------------------------------------------------------------------------- /features/built_in_matchers/yield.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/built_in_matchers/yield.feature -------------------------------------------------------------------------------- /features/composing_matchers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/composing_matchers.feature -------------------------------------------------------------------------------- /features/compound_expectations.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/compound_expectations.feature -------------------------------------------------------------------------------- /features/custom_matchers/access_running_example.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/access_running_example.feature -------------------------------------------------------------------------------- /features/custom_matchers/define_block_matcher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/define_block_matcher.feature -------------------------------------------------------------------------------- /features/custom_matchers/define_diffable_matcher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/define_diffable_matcher.feature -------------------------------------------------------------------------------- /features/custom_matchers/define_matcher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/define_matcher.feature -------------------------------------------------------------------------------- /features/custom_matchers/define_matcher_outside_rspec.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/define_matcher_outside_rspec.feature -------------------------------------------------------------------------------- /features/custom_matchers/define_matcher_with_fluent_interface.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/custom_matchers/define_matcher_with_fluent_interface.feature -------------------------------------------------------------------------------- /features/customized_message.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/customized_message.feature -------------------------------------------------------------------------------- /features/define_negated_matcher.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/define_negated_matcher.feature -------------------------------------------------------------------------------- /features/diffing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/diffing.feature -------------------------------------------------------------------------------- /features/implicit_docstrings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/implicit_docstrings.feature -------------------------------------------------------------------------------- /features/step_definitions/additional_cli_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/step_definitions/additional_cli_steps.rb -------------------------------------------------------------------------------- /features/support/diff_lcs_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/support/diff_lcs_versions.rb -------------------------------------------------------------------------------- /features/support/disallow_certain_apis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/support/disallow_certain_apis.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/rubinius.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/support/rubinius.rb -------------------------------------------------------------------------------- /features/support/ruby_features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/support/ruby_features.rb -------------------------------------------------------------------------------- /features/syntax_configuration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/syntax_configuration.feature -------------------------------------------------------------------------------- /features/test_frameworks/minitest.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/features/test_frameworks/minitest.feature -------------------------------------------------------------------------------- /lib/rspec/expectations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/block_snippet_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/block_snippet_extractor.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/configuration.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/expectation_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/expectation_target.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/fail_with.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/fail_with.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/failure_aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/failure_aggregator.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/handler.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/minitest_integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/minitest_integration.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/syntax.rb -------------------------------------------------------------------------------- /lib/rspec/expectations/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/expectations/version.rb -------------------------------------------------------------------------------- /lib/rspec/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/aliased_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/aliased_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/all.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/base_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/base_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/be.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/be.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/be_between.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/be_between.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/be_instance_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/be_instance_of.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/be_kind_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/be_kind_of.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/be_within.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/be_within.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/change.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/compound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/compound.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/contain_exactly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/contain_exactly.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/count_expectation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/count_expectation.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/cover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/cover.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/eq.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/eql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/eql.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/equal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/equal.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/exist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/exist.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/has.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/has.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/have_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/have_attributes.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/include.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/match.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/operators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/operators.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/output.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/raise_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/raise_error.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/respond_to.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/respond_to.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/satisfy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/satisfy.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/start_or_end_with.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/start_or_end_with.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/throw_symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/throw_symbol.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/built_in/yield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/built_in/yield.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/composable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/composable.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/dsl.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/english_phrasing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/english_phrasing.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/fail_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/fail_matchers.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/generated_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/generated_descriptions.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/matcher_delegator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/matcher_delegator.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/matcher_protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/matcher_protocol.rb -------------------------------------------------------------------------------- /lib/rspec/matchers/multi_matcher_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/lib/rspec/matchers/multi_matcher_diff.rb -------------------------------------------------------------------------------- /maintenance-branch: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /rspec-expectations.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/rspec-expectations.gemspec -------------------------------------------------------------------------------- /script/ci_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/ci_functions.sh -------------------------------------------------------------------------------- /script/clone_all_rspec_repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/clone_all_rspec_repos -------------------------------------------------------------------------------- /script/cucumber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/cucumber.sh -------------------------------------------------------------------------------- /script/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/functions.sh -------------------------------------------------------------------------------- /script/legacy_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/legacy_setup.sh -------------------------------------------------------------------------------- /script/predicate_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/predicate_functions.sh -------------------------------------------------------------------------------- /script/run_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/run_build -------------------------------------------------------------------------------- /script/run_rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/run_rubocop -------------------------------------------------------------------------------- /script/update_rubygems_and_install_bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/script/update_rubygems_and_install_bundler -------------------------------------------------------------------------------- /spec/rspec/expectations/block_snippet_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/block_snippet_extractor_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/configuration_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/expectation_target_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/expectation_target_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/extensions/kernel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/extensions/kernel_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/fail_with_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/fail_with_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/failure_aggregator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/failure_aggregator_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/handler_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/minitest_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/minitest_integration_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations/syntax_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations/syntax_spec.rb -------------------------------------------------------------------------------- /spec/rspec/expectations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/expectations_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/aliased_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/aliased_matcher_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/aliases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/aliases_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/all_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/base_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/base_matcher_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/be_between_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/be_between_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/be_instance_of_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/be_instance_of_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/be_kind_of_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/be_kind_of_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/be_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/be_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/be_within_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/be_within_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/captures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/captures_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/change_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/change_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/compound_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/compound_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/contain_exactly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/contain_exactly_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/cover_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/cover_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/eq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/eq_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/eql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/eql_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/equal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/equal_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/exist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/exist_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/has_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/has_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/have_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/have_attributes_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/include_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/include_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/match_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/match_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/operators_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/operators_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/output_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/output_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/raise_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/raise_error_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/respond_to_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/respond_to_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/satisfy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/satisfy_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/start_and_end_with_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/start_and_end_with_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/throw_symbol_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/throw_symbol_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/built_in/yield_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/built_in/yield_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/composable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/composable_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/define_negated_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/define_negated_matcher_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/description_generation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/description_generation_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/dsl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/dsl_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/english_phrasing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/english_phrasing_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/legacy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/legacy_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers/multi_matcher_diff_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers/multi_matcher_diff_spec.rb -------------------------------------------------------------------------------- /spec/rspec/matchers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/rspec/matchers_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/support/matchers.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/block_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/support/shared_examples/block_matcher.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/support/shared_examples/matcher.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/value_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-expectations/HEAD/spec/support/shared_examples/value_matcher.rb --------------------------------------------------------------------------------