has_finder 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +431 -0
- data/README.txt +1 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +70 -0
- data/config/requirements.rb +17 -0
- data/lib/has_finder.rb +1 -0
- data/lib/has_finder/has_finder.rb +84 -0
- data/lib/has_finder/metaid.rb +15 -0
- data/lib/has_finder/version.rb +9 -0
- data/log/debug.log +0 -0
- data/nbproject/private/private.xml +4 -0
- data/nbproject/private/rake-t.txt +1 -0
- data/nbproject/project.properties +4 -0
- data/nbproject/project.xml +15 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/setup.rb +1585 -0
- data/spec/rails/README +182 -0
- data/spec/rails/Rakefile +10 -0
- data/spec/rails/app/controllers/application.rb +7 -0
- data/spec/rails/app/helpers/application_helper.rb +3 -0
- data/spec/rails/app/models/being.rb +3 -0
- data/spec/rails/config/boot.rb +45 -0
- data/spec/rails/config/database.yml +36 -0
- data/spec/rails/config/environment.rb +62 -0
- data/spec/rails/config/environments/development.rb +21 -0
- data/spec/rails/config/environments/production.rb +18 -0
- data/spec/rails/config/environments/test.rb +19 -0
- data/spec/rails/config/routes.rb +23 -0
- data/spec/rails/db/migrate/001_create_beings.rb +12 -0
- data/spec/rails/db/schema.rb +17 -0
- data/spec/rails/doc/README_FOR_APP +2 -0
- data/spec/rails/log/development.log +432 -0
- data/spec/rails/log/production.log +0 -0
- data/spec/rails/log/server.log +0 -0
- data/spec/rails/log/test.log +5820 -0
- data/spec/rails/nbproject/private/config.properties +0 -0
- data/spec/rails/nbproject/private/private.properties +1 -0
- data/spec/rails/nbproject/private/rake-t.txt +54 -0
- data/spec/rails/nbproject/project.properties +4 -0
- data/spec/rails/nbproject/project.xml +9 -0
- data/spec/rails/previous_failures.txt +0 -0
- data/spec/rails/public/404.html +30 -0
- data/spec/rails/public/500.html +30 -0
- data/spec/rails/public/dispatch.cgi +10 -0
- data/spec/rails/public/dispatch.fcgi +24 -0
- data/spec/rails/public/dispatch.rb +10 -0
- data/spec/rails/public/favicon.ico +0 -0
- data/spec/rails/public/images/rails.png +0 -0
- data/spec/rails/public/index.html +277 -0
- data/spec/rails/public/javascripts/application.js +2 -0
- data/spec/rails/public/javascripts/controls.js +833 -0
- data/spec/rails/public/javascripts/dragdrop.js +942 -0
- data/spec/rails/public/javascripts/effects.js +1088 -0
- data/spec/rails/public/javascripts/prototype.js +2515 -0
- data/spec/rails/public/robots.txt +1 -0
- data/spec/rails/script/about +3 -0
- data/spec/rails/script/breakpointer +3 -0
- data/spec/rails/script/console +3 -0
- data/spec/rails/script/destroy +3 -0
- data/spec/rails/script/generate +3 -0
- data/spec/rails/script/performance/benchmarker +3 -0
- data/spec/rails/script/performance/profiler +3 -0
- data/spec/rails/script/plugin +3 -0
- data/spec/rails/script/process/inspector +3 -0
- data/spec/rails/script/process/reaper +3 -0
- data/spec/rails/script/process/spawner +3 -0
- data/spec/rails/script/runner +3 -0
- data/spec/rails/script/server +3 -0
- data/spec/rails/script/spec +4 -0
- data/spec/rails/script/spec_server +45 -0
- data/spec/rails/spec/fixtures/beings.yml +12 -0
- data/spec/rails/spec/models/being_spec.rb +98 -0
- data/spec/rails/spec/spec.opts +6 -0
- data/spec/rails/spec/spec_helper.rb +15 -0
- data/spec/rails/test/test_helper.rb +28 -0
- data/spec/rails/tmp/sessions/ruby_sess.5edc9bf3b65456d0 +0 -0
- data/spec/rails/vendor/plugins/rspec/CHANGES +797 -0
- data/spec/rails/vendor/plugins/rspec/MIT-LICENSE +20 -0
- data/spec/rails/vendor/plugins/rspec/README +70 -0
- data/spec/rails/vendor/plugins/rspec/Rakefile +304 -0
- data/spec/rails/vendor/plugins/rspec/UPGRADE +31 -0
- data/spec/rails/vendor/plugins/rspec/bin/spec +3 -0
- data/spec/rails/vendor/plugins/rspec/bin/spec_translator +8 -0
- data/spec/rails/vendor/plugins/rspec/examples/auto_spec_description_example.rb +19 -0
- data/spec/rails/vendor/plugins/rspec/examples/before_and_after_example.rb +39 -0
- data/spec/rails/vendor/plugins/rspec/examples/behave_as_example.rb +45 -0
- data/spec/rails/vendor/plugins/rspec/examples/custom_expectation_matchers.rb +54 -0
- data/spec/rails/vendor/plugins/rspec/examples/custom_formatter.rb +11 -0
- data/spec/rails/vendor/plugins/rspec/examples/dynamic_spec.rb +9 -0
- data/spec/rails/vendor/plugins/rspec/examples/file_accessor.rb +18 -0
- data/spec/rails/vendor/plugins/rspec/examples/file_accessor_spec.rb +38 -0
- data/spec/rails/vendor/plugins/rspec/examples/greeter_spec.rb +30 -0
- data/spec/rails/vendor/plugins/rspec/examples/helper_method_example.rb +11 -0
- data/spec/rails/vendor/plugins/rspec/examples/io_processor.rb +8 -0
- data/spec/rails/vendor/plugins/rspec/examples/io_processor_spec.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/examples/legacy_spec.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/examples/mocking_example.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/examples/multi_threaded_behaviour_runner.rb +25 -0
- data/spec/rails/vendor/plugins/rspec/examples/not_yet_implemented_spec.rb +12 -0
- data/spec/rails/vendor/plugins/rspec/examples/partial_mock_example.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/examples/predicate_example.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/examples/priority.txt +1 -0
- data/spec/rails/vendor/plugins/rspec/examples/shared_behaviours_example.rb +39 -0
- data/spec/rails/vendor/plugins/rspec/examples/spec_helper.rb +1 -0
- data/spec/rails/vendor/plugins/rspec/examples/stack.rb +36 -0
- data/spec/rails/vendor/plugins/rspec/examples/stack_spec.rb +97 -0
- data/spec/rails/vendor/plugins/rspec/examples/stubbing_example.rb +69 -0
- data/spec/rails/vendor/plugins/rspec/examples/test_case_adapter_example.rb +26 -0
- data/spec/rails/vendor/plugins/rspec/examples/test_case_spec.rb +65 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/diffing_spec.rb +36 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/mocking_example.rb +33 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +26 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +25 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +20 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/predicate_example.rb +29 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/raising_example.rb +47 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/spec_helper.rb +1 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +7 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/team_spec.rb +46 -0
- data/spec/rails/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +7 -0
- data/spec/rails/vendor/plugins/rspec/init.rb +3 -0
- data/spec/rails/vendor/plugins/rspec/lib/autotest/discover.rb +3 -0
- data/spec/rails/vendor/plugins/rspec/lib/autotest/rspec.rb +67 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec.rb +13 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/behaviour.rb +210 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/behaviour_callbacks.rb +78 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/behaviour_eval.rb +220 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/behaviour_factory.rb +42 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/composite_proc_builder.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/configuration.rb +119 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/description.rb +69 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/example.rb +127 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/example_matcher.rb +40 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/dsl/example_should_raise_handler.rb +74 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations.rb +56 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +61 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/errors.rb +6 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +2 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +66 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/expectations/handler.rb +43 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/extensions.rb +1 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/extensions/object.rb +6 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers.rb +166 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/be.rb +206 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +37 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/change.rb +120 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/eql.rb +43 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/equal.rb +43 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/has.rb +44 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/have.rb +145 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/include.rb +70 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/match.rb +41 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +72 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +100 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +45 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +47 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +72 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks.rb +208 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +183 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +84 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/errors.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +3 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +231 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/methods.rb +35 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/mock.rb +29 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +29 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +163 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/space.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +30 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/rake/spectask.rb +175 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +52 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner.rb +165 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +56 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/behaviour_runner.rb +102 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/command_line.rb +22 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/extensions/kernel.rb +50 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/extensions/object.rb +32 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter.rb +9 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +68 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +102 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/failing_behaviours_formatter.rb +25 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +22 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +316 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +30 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/rdoc_formatter.rb +24 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +72 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +226 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/options.rb +158 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/reporter.rb +114 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +50 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/test_case_adapter.rb +10 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/translator.rb +106 -0
- data/spec/rails/vendor/plugins/rspec/lib/spec/version.rb +22 -0
- data/spec/rails/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +18 -0
- data/spec/rails/vendor/plugins/rspec/rake_tasks/examples.rake +7 -0
- data/spec/rails/vendor/plugins/rspec/rake_tasks/examples_specdoc.rake +9 -0
- data/spec/rails/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +9 -0
- data/spec/rails/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +9 -0
- data/spec/rails/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +7 -0
- data/spec/rails/vendor/plugins/rspec/spec.opts +13 -0
- data/spec/rails/vendor/plugins/rspec/spec/README.jruby +14 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/behaviour_eval_spec.rb +49 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/behaviour_factory_spec.rb +30 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/behaviour_spec.rb +624 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/composite_proc_builder_spec.rb +57 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/configuration_spec.rb +50 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/description_spec.rb +81 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/example_class_spec.rb +24 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/example_instance_spec.rb +162 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/example_should_raise_spec.rb +137 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/predicate_matcher_spec.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/dsl/shared_behaviour_spec.rb +228 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +107 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +46 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +71 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +39 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +209 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +232 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +159 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +48 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +88 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +37 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +272 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +45 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +37 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +78 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +158 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +147 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +54 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +51 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +29 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +19 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +114 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +84 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +377 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +40 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +33 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +52 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +148 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +159 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +12 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/behaviour_runner_spec.rb +206 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +33 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/context_matching_spec.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +81 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/example_matcher_spec.rb +127 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/examples.txt +2 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/execution_context_spec.rb +31 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/extensions/kernel_spec.rb +36 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/failed.txt +3 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/failing_behaviours_formatter_spec.rb +27 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +28 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +333 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +344 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +338 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +338 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +56 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_dry_run_spec.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_failure_dump_spec.rb +36 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +78 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/rdoc_formatter_dry_run_spec.rb +19 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/rdoc_formatter_spec.rb +46 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +11 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_dry_run_spec.rb +21 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +56 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +63 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +14 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/object_ext_spec.rb +11 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +348 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +142 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +56 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +153 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/spec.opts +2 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +93 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +2 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/spec_classes.rb +111 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec/translator_spec.rb +216 -0
- data/spec/rails/vendor/plugins/rspec/spec/spec_helper.rb +43 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/MIT-LICENSE +31 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/README +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/Rakefile +9 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/CHANGES +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/rspec_generator.rb +31 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/templates/previous_failures.txt +0 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec +4 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec_server +45 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec.opts +6 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb +26 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_controller/USAGE +33 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_controller/rspec_controller_generator.rb +42 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/controller_spec.rb +23 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb +11 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/view_spec.rb +12 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_model/USAGE +18 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_model/rspec_model_generator.rb +30 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_model/templates/model_spec.rb +11 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +161 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/controller_spec.rb +303 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +25 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb +4 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb +22 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/show_erb_spec.rb +22 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/init.rb +9 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +81 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/dsl.rb +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/dsl/configuration.rb +23 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/matchers.rb +3 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/matchers/have.rb +12 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails.rb +57 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl.rb +40 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/assigns_hash_proxy.rb +42 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour.rb +8 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/base.rb +82 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/controller.rb +246 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/functional.rb +90 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/helper.rb +100 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/model.rb +21 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/behaviour/view.rb +185 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/dsl/ivar_proxy.rb +62 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions.rb +7 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/base.rb +11 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/rescue.rb +10 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/test_response.rb +5 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_view/base.rb +26 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/active_record/base.rb +29 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/object.rb +5 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers.rb +29 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/assert_select.rb +131 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +55 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/redirect_to.rb +106 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/render_template.rb +63 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/lib/spec/rails/version.rb +26 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/assigns_hash_proxy_spec.rb +55 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/behaviour_factory_spec.rb +53 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/controller_isolation_spec.rb +43 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/controller_spec_spec.rb +124 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/helper_spec_spec.rb +62 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/ivar_proxy_spec.rb +64 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/model_spec_spec.rb +14 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/shared_behaviour_spec.rb +16 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/test_unit_assertion_accessibility_spec.rb +28 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/dsl/view_spec_spec.rb +165 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/extensions/active_record_spec.rb +17 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb +718 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/matchers/description_generation_spec.rb +42 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb +183 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb +112 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec/spec_helper.rb +40 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +36 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/controllers/redirect_spec_controller.rb +59 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/controllers/render_spec_controller.rb +18 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/controllers/rjs_spec_controller.rb +58 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/helpers/explicit_helper.rb +10 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/helpers/more_explicit_helper.rb +5 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/helpers/plugin_application_helper.rb +6 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/helpers/view_spec_helper.rb +13 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/_a_partial.rhtml +0 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.js.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rhtml +0 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_included_partial.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_included_partial_collection_with_spacer_template.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_spacer.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/accessor.rhtml +3 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/entry_form.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/partial_collection_including_template.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/partial_including_template.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/partial_with_array.rhtml +1 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/show.rhtml +2 -0
- data/spec/rails/vendor/plugins/rspec_on_rails/tasks/rspec.rake +90 -0
- data/tasks/deployment.rake +27 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +9 -0
- data/test/test_has_finder.rb +11 -0
- data/test/test_helper.rb +2 -0
- metadata +490 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
describe "Matchers should be able to generate their own descriptions" do
|
|
4
|
+
before(:each) do
|
|
5
|
+
@desc = nil
|
|
6
|
+
@callback = lambda { |desc| @desc = desc }
|
|
7
|
+
Spec::Matchers.description_generated(@callback)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
it "should == expected" do
|
|
11
|
+
"this".should == "this"
|
|
12
|
+
@desc.should == "should == \"this\""
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
it "should not == expected" do
|
|
16
|
+
"this".should_not == "that"
|
|
17
|
+
@desc.should == "should not == \"that\""
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
it "should be empty (arbitrary predicate)" do
|
|
21
|
+
[].should be_empty
|
|
22
|
+
@desc.should == "should be empty"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "should not be empty (arbitrary predicate)" do
|
|
26
|
+
[1].should_not be_empty
|
|
27
|
+
@desc.should == "should not be empty"
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
it "should be true" do
|
|
31
|
+
true.should be_true
|
|
32
|
+
@desc.should == "should be true"
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
it "should be false" do
|
|
36
|
+
false.should be_false
|
|
37
|
+
@desc.should == "should be false"
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
it "should be nil" do
|
|
41
|
+
nil.should be_nil
|
|
42
|
+
@desc.should == "should be nil"
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
it "should be > n" do
|
|
46
|
+
5.should be > 3
|
|
47
|
+
@desc.should == "should be > 3"
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
it "should be predicate arg1, arg2 and arg3" do
|
|
51
|
+
5.0.should be_between(0,10)
|
|
52
|
+
@desc.should == "should be between 0 and 10"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
it "should be_few_words predicate should be transformed to 'be few words'" do
|
|
56
|
+
5.should be_kind_of(Fixnum)
|
|
57
|
+
@desc.should == "should be kind of Fixnum"
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
it "should preserve a proper prefix for be predicate" do
|
|
61
|
+
5.should be_a_kind_of(Fixnum)
|
|
62
|
+
@desc.should == "should be a kind of Fixnum"
|
|
63
|
+
5.should be_an_instance_of(Fixnum)
|
|
64
|
+
@desc.should == "should be an instance of Fixnum"
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
it "should equal" do
|
|
68
|
+
expected = "expected"
|
|
69
|
+
expected.should equal(expected)
|
|
70
|
+
@desc.should == "should equal \"expected\""
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
it "should_not equal" do
|
|
74
|
+
5.should_not equal(37)
|
|
75
|
+
@desc.should == "should not equal 37"
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
it "should eql" do
|
|
79
|
+
"string".should eql("string")
|
|
80
|
+
@desc.should == "should eql \"string\""
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
it "should not eql" do
|
|
84
|
+
"a".should_not eql(:a)
|
|
85
|
+
@desc.should == "should not eql :a"
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
it "should have_key" do
|
|
89
|
+
{:a => "a"}.should have_key(:a)
|
|
90
|
+
@desc.should == "should have key :a"
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
it "should have n items" do
|
|
94
|
+
team.should have(3).players
|
|
95
|
+
@desc.should == "should have 3 players"
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
it "should have at least n items" do
|
|
99
|
+
team.should have_at_least(2).players
|
|
100
|
+
@desc.should == "should have at least 2 players"
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
it "should have at most n items" do
|
|
104
|
+
team.should have_at_most(4).players
|
|
105
|
+
@desc.should == "should have at most 4 players"
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
it "should include" do
|
|
109
|
+
[1,2,3].should include(3)
|
|
110
|
+
@desc.should == "should include 3"
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
it "should match" do
|
|
114
|
+
"this string".should match(/this string/)
|
|
115
|
+
@desc.should == "should match /this string/"
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
it "should raise_error" do
|
|
119
|
+
lambda { raise }.should raise_error
|
|
120
|
+
@desc.should == "should raise Exception"
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
it "should raise_error with type" do
|
|
124
|
+
lambda { raise }.should raise_error(RuntimeError)
|
|
125
|
+
@desc.should == "should raise RuntimeError"
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
it "should raise_error with type and message" do
|
|
129
|
+
lambda { raise "there was an error" }.should raise_error(RuntimeError, "there was an error")
|
|
130
|
+
@desc.should == "should raise RuntimeError with \"there was an error\""
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
it "should respond_to" do
|
|
134
|
+
[].should respond_to(:insert)
|
|
135
|
+
@desc.should == "should respond to #insert"
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
it "should throw symbol" do
|
|
139
|
+
lambda { throw :what_a_mess }.should throw_symbol
|
|
140
|
+
@desc.should == "should throw a Symbol"
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
it "should throw symbol (with named symbol)" do
|
|
144
|
+
lambda { throw :what_a_mess }.should throw_symbol(:what_a_mess)
|
|
145
|
+
@desc.should == "should throw :what_a_mess"
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
def team
|
|
149
|
+
Class.new do
|
|
150
|
+
def players
|
|
151
|
+
[1,2,3]
|
|
152
|
+
end
|
|
153
|
+
end.new
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
after(:each) do
|
|
157
|
+
Spec::Matchers.unregister_description_generated(@callback)
|
|
158
|
+
end
|
|
159
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
module Spec
|
|
4
|
+
module Matchers
|
|
5
|
+
describe Eql do
|
|
6
|
+
it "should match when actual.eql?(expected)" do
|
|
7
|
+
Eql.new(1).matches?(1).should be_true
|
|
8
|
+
end
|
|
9
|
+
it "should not match when !actual.eql?(expected)" do
|
|
10
|
+
Eql.new(1).matches?(2).should be_false
|
|
11
|
+
end
|
|
12
|
+
it "should describe itself" do
|
|
13
|
+
matcher = Eql.new(1)
|
|
14
|
+
matcher.description.should == "eql 1"
|
|
15
|
+
end
|
|
16
|
+
it "should provide message, expected and actual on #failure_message" do
|
|
17
|
+
matcher = Eql.new("1")
|
|
18
|
+
matcher.matches?(1)
|
|
19
|
+
matcher.failure_message.should == ["expected \"1\", got 1 (using .eql?)", "1", 1]
|
|
20
|
+
end
|
|
21
|
+
it "should provide message, expected and actual on #negative_failure_message" do
|
|
22
|
+
matcher = Eql.new(1)
|
|
23
|
+
matcher.matches?(1)
|
|
24
|
+
matcher.negative_failure_message.should == ["expected 1 not to equal 1 (using .eql?)", 1, 1]
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
module Spec
|
|
4
|
+
module Matchers
|
|
5
|
+
describe Equal do
|
|
6
|
+
it "should match when actual.equal?(expected)" do
|
|
7
|
+
Equal.new(1).matches?(1).should be_true
|
|
8
|
+
end
|
|
9
|
+
it "should not match when !actual.equal?(expected)" do
|
|
10
|
+
Equal.new("1").matches?("1").should be_false
|
|
11
|
+
end
|
|
12
|
+
it "should describe itself" do
|
|
13
|
+
matcher = Equal.new(1)
|
|
14
|
+
matcher.description.should == "equal 1"
|
|
15
|
+
end
|
|
16
|
+
it "should provide message, expected and actual on #failure_message" do
|
|
17
|
+
matcher = Equal.new("1")
|
|
18
|
+
matcher.matches?(1)
|
|
19
|
+
matcher.failure_message.should == ["expected \"1\", got 1 (using .equal?)", "1", 1]
|
|
20
|
+
end
|
|
21
|
+
it "should provide message, expected and actual on #negative_failure_message" do
|
|
22
|
+
matcher = Equal.new(1)
|
|
23
|
+
matcher.matches?(1)
|
|
24
|
+
matcher.negative_failure_message.should == ["expected 1 not to equal 1 (using .equal?)", 1, 1]
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
# NOTE - this was initially handled by an explicit matcher, but is now
|
|
4
|
+
# handled by a default set of predicate_matchers.
|
|
5
|
+
|
|
6
|
+
class Substance
|
|
7
|
+
def initialize exists, description
|
|
8
|
+
@exists = exists
|
|
9
|
+
@description = description
|
|
10
|
+
end
|
|
11
|
+
def exist?
|
|
12
|
+
@exists
|
|
13
|
+
end
|
|
14
|
+
def inspect
|
|
15
|
+
@description
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
describe "should exist" do
|
|
20
|
+
before(:each) do
|
|
21
|
+
@real = Substance.new true, 'something real'
|
|
22
|
+
@imaginary = Substance.new false, 'something imaginary'
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "should pass if target exists" do
|
|
26
|
+
@real.should exist
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
it "should fail if target does not exist" do
|
|
30
|
+
lambda { @imaginary.should exist }.
|
|
31
|
+
should fail
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
describe "should_not exist" do
|
|
36
|
+
before(:each) do
|
|
37
|
+
@real = Substance.new true, 'something real'
|
|
38
|
+
@imaginary = Substance.new false, 'something imaginary'
|
|
39
|
+
end
|
|
40
|
+
it "should pass if target doesn't exist" do
|
|
41
|
+
@imaginary.should_not exist
|
|
42
|
+
end
|
|
43
|
+
it "should fail if target does exist" do
|
|
44
|
+
lambda { @real.should_not exist }.
|
|
45
|
+
should fail
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
module ExampleExpectations
|
|
4
|
+
|
|
5
|
+
class ArbitraryMatcher
|
|
6
|
+
def initialize(*args, &block)
|
|
7
|
+
if args.last.is_a? Hash
|
|
8
|
+
@expected = args.last[:expected]
|
|
9
|
+
end
|
|
10
|
+
if block_given?
|
|
11
|
+
@expected = block.call
|
|
12
|
+
end
|
|
13
|
+
@block = block
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def matches?(target)
|
|
17
|
+
@target = target
|
|
18
|
+
return @expected == target
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def with(new_value)
|
|
22
|
+
@expected = new_value
|
|
23
|
+
self
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def failure_message
|
|
27
|
+
"expected #{@expected}, got #{@target}"
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def negative_failure_message
|
|
31
|
+
"expected not #{@expected}, got #{@target}"
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
class PositiveOnlyMatcher < ArbitraryMatcher
|
|
36
|
+
undef negative_failure_message
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def arbitrary_matcher(*args, &block)
|
|
40
|
+
ArbitraryMatcher.new(*args, &block)
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def positive_only_matcher(*args, &block)
|
|
44
|
+
PositiveOnlyMatcher.new(*args, &block)
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
module Spec
|
|
50
|
+
module Expectations
|
|
51
|
+
describe ExpectationMatcherHandler, ".handle_matcher" do
|
|
52
|
+
it "should ask the matcher if it matches" do
|
|
53
|
+
matcher = mock("matcher")
|
|
54
|
+
actual = Object.new
|
|
55
|
+
matcher.should_receive(:matches?).with(actual).and_return(true)
|
|
56
|
+
ExpectationMatcherHandler.handle_matcher(actual, matcher)
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
describe ExpectationMatcherHandler do
|
|
61
|
+
include ExampleExpectations
|
|
62
|
+
|
|
63
|
+
it "should handle submitted args" do
|
|
64
|
+
5.should arbitrary_matcher(:expected => 5)
|
|
65
|
+
5.should arbitrary_matcher(:expected => "wrong").with(5)
|
|
66
|
+
lambda { 5.should arbitrary_matcher(:expected => 4) }.should fail_with("expected 4, got 5")
|
|
67
|
+
lambda { 5.should arbitrary_matcher(:expected => 5).with(4) }.should fail_with("expected 4, got 5")
|
|
68
|
+
5.should_not arbitrary_matcher(:expected => 4)
|
|
69
|
+
5.should_not arbitrary_matcher(:expected => 5).with(4)
|
|
70
|
+
lambda { 5.should_not arbitrary_matcher(:expected => 5) }.should fail_with("expected not 5, got 5")
|
|
71
|
+
lambda { 5.should_not arbitrary_matcher(:expected => 4).with(5) }.should fail_with("expected not 5, got 5")
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
it "should handle the submitted block" do
|
|
75
|
+
5.should arbitrary_matcher { 5 }
|
|
76
|
+
5.should arbitrary_matcher(:expected => 4) { 5 }
|
|
77
|
+
5.should arbitrary_matcher(:expected => 4).with(5) { 3 }
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
it "should explain when matcher does not support should_not" do
|
|
81
|
+
lambda {
|
|
82
|
+
5.should_not positive_only_matcher(:expected => 5)
|
|
83
|
+
}.should fail_with(/Matcher does not support should_not.\n/)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
describe "should have_sym(*args)" do
|
|
4
|
+
it "should pass if #has_sym?(*args) returns true" do
|
|
5
|
+
{:a => "A"}.should have_key(:a)
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
it "should fail if #has_sym?(*args) returns false" do
|
|
9
|
+
lambda {
|
|
10
|
+
{:b => "B"}.should have_key(:a)
|
|
11
|
+
}.should fail_with("expected #has_key?(:a) to return true, got false")
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
it "should fail if target does not respond to #has_sym?" do
|
|
15
|
+
lambda {
|
|
16
|
+
Object.new.should have_key(:a)
|
|
17
|
+
}.should raise_error(NoMethodError)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
describe "should_not have_sym(*args)" do
|
|
22
|
+
it "should pass if #has_sym?(*args) returns false" do
|
|
23
|
+
{:a => "A"}.should_not have_key(:b)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
it "should fail if #has_sym?(*args) returns true" do
|
|
27
|
+
lambda {
|
|
28
|
+
{:a => "A"}.should_not have_key(:a)
|
|
29
|
+
}.should fail_with("expected #has_key?(:a) to return false, got true")
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
it "should fail if target does not respond to #has_sym?" do
|
|
33
|
+
lambda {
|
|
34
|
+
Object.new.should have_key(:a)
|
|
35
|
+
}.should raise_error(NoMethodError)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
|
2
|
+
|
|
3
|
+
module HaveSpecHelper
|
|
4
|
+
def create_collection_owner_with(n)
|
|
5
|
+
owner = Spec::Expectations::Helper::CollectionOwner.new
|
|
6
|
+
(1..n).each do |n|
|
|
7
|
+
owner.add_to_collection_with_length_method(n)
|
|
8
|
+
owner.add_to_collection_with_size_method(n)
|
|
9
|
+
end
|
|
10
|
+
owner
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
describe "should have(n).items" do
|
|
15
|
+
include HaveSpecHelper
|
|
16
|
+
|
|
17
|
+
it "should pass if target has a collection of items with n members" do
|
|
18
|
+
owner = create_collection_owner_with(3)
|
|
19
|
+
owner.should have(3).items_in_collection_with_length_method
|
|
20
|
+
owner.should have(3).items_in_collection_with_size_method
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
it "should convert :no to 0" do
|
|
24
|
+
owner = create_collection_owner_with(0)
|
|
25
|
+
owner.should have(:no).items_in_collection_with_length_method
|
|
26
|
+
owner.should have(:no).items_in_collection_with_size_method
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
it "should fail if target has a collection of items with < n members" do
|
|
30
|
+
owner = create_collection_owner_with(3)
|
|
31
|
+
lambda {
|
|
32
|
+
owner.should have(4).items_in_collection_with_length_method
|
|
33
|
+
}.should fail_with("expected 4 items_in_collection_with_length_method, got 3")
|
|
34
|
+
lambda {
|
|
35
|
+
owner.should have(4).items_in_collection_with_size_method
|
|
36
|
+
}.should fail_with("expected 4 items_in_collection_with_size_method, got 3")
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
it "should fail if target has a collection of items with > n members" do
|
|
40
|
+
owner = create_collection_owner_with(3)
|
|
41
|
+
lambda {
|
|
42
|
+
owner.should have(2).items_in_collection_with_length_method
|
|
43
|
+
}.should fail_with("expected 2 items_in_collection_with_length_method, got 3")
|
|
44
|
+
lambda {
|
|
45
|
+
owner.should have(2).items_in_collection_with_size_method
|
|
46
|
+
}.should fail_with("expected 2 items_in_collection_with_size_method, got 3")
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
describe "should have(n).items where result responds to items but returns something other than a collection" do
|
|
51
|
+
it "should provide a meaningful error" do
|
|
52
|
+
owner = Class.new do
|
|
53
|
+
def items
|
|
54
|
+
Object.new
|
|
55
|
+
end
|
|
56
|
+
end.new
|
|
57
|
+
lambda do
|
|
58
|
+
owner.should have(3).items
|
|
59
|
+
end.should raise_error(RuntimeError, "expected items to be a collection but it does not respond to #length or #size")
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
describe "should_not have(n).items" do
|
|
64
|
+
include HaveSpecHelper
|
|
65
|
+
|
|
66
|
+
it "should pass if target has a collection of items with < n members" do
|
|
67
|
+
owner = create_collection_owner_with(3)
|
|
68
|
+
owner.should_not have(4).items_in_collection_with_length_method
|
|
69
|
+
owner.should_not have(4).items_in_collection_with_size_method
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
it "should pass if target has a collection of items with > n members" do
|
|
73
|
+
owner = create_collection_owner_with(3)
|
|
74
|
+
owner.should_not have(2).items_in_collection_with_length_method
|
|
75
|
+
owner.should_not have(2).items_in_collection_with_size_method
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
it "should fail if target has a collection of items with n members" do
|
|
79
|
+
owner = create_collection_owner_with(3)
|
|
80
|
+
lambda {
|
|
81
|
+
owner.should_not have(3).items_in_collection_with_length_method
|
|
82
|
+
}.should fail_with("expected target not to have 3 items_in_collection_with_length_method, got 3")
|
|
83
|
+
lambda {
|
|
84
|
+
owner.should_not have(3).items_in_collection_with_size_method
|
|
85
|
+
}.should fail_with("expected target not to have 3 items_in_collection_with_size_method, got 3")
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe "should have_exactly(n).items" do
|
|
90
|
+
include HaveSpecHelper
|
|
91
|
+
|
|
92
|
+
it "should pass if target has a collection of items with n members" do
|
|
93
|
+
owner = create_collection_owner_with(3)
|
|
94
|
+
owner.should have_exactly(3).items_in_collection_with_length_method
|
|
95
|
+
owner.should have_exactly(3).items_in_collection_with_size_method
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
it "should convert :no to 0" do
|
|
99
|
+
owner = create_collection_owner_with(0)
|
|
100
|
+
owner.should have_exactly(:no).items_in_collection_with_length_method
|
|
101
|
+
owner.should have_exactly(:no).items_in_collection_with_size_method
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
it "should fail if target has a collection of items with < n members" do
|
|
105
|
+
owner = create_collection_owner_with(3)
|
|
106
|
+
lambda {
|
|
107
|
+
owner.should have_exactly(4).items_in_collection_with_length_method
|
|
108
|
+
}.should fail_with("expected 4 items_in_collection_with_length_method, got 3")
|
|
109
|
+
lambda {
|
|
110
|
+
owner.should have_exactly(4).items_in_collection_with_size_method
|
|
111
|
+
}.should fail_with("expected 4 items_in_collection_with_size_method, got 3")
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
it "should fail if target has a collection of items with > n members" do
|
|
115
|
+
owner = create_collection_owner_with(3)
|
|
116
|
+
lambda {
|
|
117
|
+
owner.should have_exactly(2).items_in_collection_with_length_method
|
|
118
|
+
}.should fail_with("expected 2 items_in_collection_with_length_method, got 3")
|
|
119
|
+
lambda {
|
|
120
|
+
owner.should have_exactly(2).items_in_collection_with_size_method
|
|
121
|
+
}.should fail_with("expected 2 items_in_collection_with_size_method, got 3")
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
describe "should have_at_least(n).items" do
|
|
126
|
+
include HaveSpecHelper
|
|
127
|
+
|
|
128
|
+
it "should pass if target has a collection of items with n members" do
|
|
129
|
+
owner = create_collection_owner_with(3)
|
|
130
|
+
owner.should have_at_least(3).items_in_collection_with_length_method
|
|
131
|
+
owner.should have_at_least(3).items_in_collection_with_size_method
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
it "should pass if target has a collection of items with > n members" do
|
|
135
|
+
owner = create_collection_owner_with(3)
|
|
136
|
+
owner.should have_at_least(2).items_in_collection_with_length_method
|
|
137
|
+
owner.should have_at_least(2).items_in_collection_with_size_method
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
it "should fail if target has a collection of items with < n members" do
|
|
141
|
+
owner = create_collection_owner_with(3)
|
|
142
|
+
lambda {
|
|
143
|
+
owner.should have_at_least(4).items_in_collection_with_length_method
|
|
144
|
+
}.should fail_with("expected at least 4 items_in_collection_with_length_method, got 3")
|
|
145
|
+
lambda {
|
|
146
|
+
owner.should have_at_least(4).items_in_collection_with_size_method
|
|
147
|
+
}.should fail_with("expected at least 4 items_in_collection_with_size_method, got 3")
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
it "should provide educational negative failure messages" do
|
|
151
|
+
#given
|
|
152
|
+
owner = create_collection_owner_with(3)
|
|
153
|
+
length_matcher = have_at_least(3).items_in_collection_with_length_method
|
|
154
|
+
size_matcher = have_at_least(3).items_in_collection_with_size_method
|
|
155
|
+
|
|
156
|
+
#when
|
|
157
|
+
length_matcher.matches?(owner)
|
|
158
|
+
size_matcher.matches?(owner)
|
|
159
|
+
|
|
160
|
+
#then
|
|
161
|
+
length_matcher.negative_failure_message.should == <<-EOF
|
|
162
|
+
Isn't life confusing enough?
|
|
163
|
+
Instead of having to figure out the meaning of this:
|
|
164
|
+
should_not have_at_least(3).items_in_collection_with_length_method
|
|
165
|
+
We recommend that you use this instead:
|
|
166
|
+
should have_at_most(2).items_in_collection_with_length_method
|
|
167
|
+
EOF
|
|
168
|
+
|
|
169
|
+
size_matcher.negative_failure_message.should == <<-EOF
|
|
170
|
+
Isn't life confusing enough?
|
|
171
|
+
Instead of having to figure out the meaning of this:
|
|
172
|
+
should_not have_at_least(3).items_in_collection_with_size_method
|
|
173
|
+
We recommend that you use this instead:
|
|
174
|
+
should have_at_most(2).items_in_collection_with_size_method
|
|
175
|
+
EOF
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
describe "should have_at_most(n).items" do
|
|
180
|
+
include HaveSpecHelper
|
|
181
|
+
|
|
182
|
+
it "should pass if target has a collection of items with n members" do
|
|
183
|
+
owner = create_collection_owner_with(3)
|
|
184
|
+
owner.should have_at_most(3).items_in_collection_with_length_method
|
|
185
|
+
owner.should have_at_most(3).items_in_collection_with_size_method
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
it "should fail if target has a collection of items with > n members" do
|
|
189
|
+
owner = create_collection_owner_with(3)
|
|
190
|
+
lambda {
|
|
191
|
+
owner.should have_at_most(2).items_in_collection_with_length_method
|
|
192
|
+
}.should fail_with("expected at most 2 items_in_collection_with_length_method, got 3")
|
|
193
|
+
lambda {
|
|
194
|
+
owner.should have_at_most(2).items_in_collection_with_size_method
|
|
195
|
+
}.should fail_with("expected at most 2 items_in_collection_with_size_method, got 3")
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
it "should pass if target has a collection of items with < n members" do
|
|
199
|
+
owner = create_collection_owner_with(3)
|
|
200
|
+
owner.should have_at_most(4).items_in_collection_with_length_method
|
|
201
|
+
owner.should have_at_most(4).items_in_collection_with_size_method
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
it "should provide educational negative failure messages" do
|
|
205
|
+
#given
|
|
206
|
+
owner = create_collection_owner_with(3)
|
|
207
|
+
length_matcher = have_at_most(3).items_in_collection_with_length_method
|
|
208
|
+
size_matcher = have_at_most(3).items_in_collection_with_size_method
|
|
209
|
+
|
|
210
|
+
#when
|
|
211
|
+
length_matcher.matches?(owner)
|
|
212
|
+
size_matcher.matches?(owner)
|
|
213
|
+
|
|
214
|
+
#then
|
|
215
|
+
length_matcher.negative_failure_message.should == <<-EOF
|
|
216
|
+
Isn't life confusing enough?
|
|
217
|
+
Instead of having to figure out the meaning of this:
|
|
218
|
+
should_not have_at_most(3).items_in_collection_with_length_method
|
|
219
|
+
We recommend that you use this instead:
|
|
220
|
+
should have_at_least(4).items_in_collection_with_length_method
|
|
221
|
+
EOF
|
|
222
|
+
|
|
223
|
+
size_matcher.negative_failure_message.should == <<-EOF
|
|
224
|
+
Isn't life confusing enough?
|
|
225
|
+
Instead of having to figure out the meaning of this:
|
|
226
|
+
should_not have_at_most(3).items_in_collection_with_size_method
|
|
227
|
+
We recommend that you use this instead:
|
|
228
|
+
should have_at_least(4).items_in_collection_with_size_method
|
|
229
|
+
EOF
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
describe "have(n).items(args, block)" do
|
|
234
|
+
it "should pass args to target" do
|
|
235
|
+
target = mock("target")
|
|
236
|
+
target.should_receive(:items).with("arg1","arg2").and_return([1,2,3])
|
|
237
|
+
target.should have(3).items("arg1","arg2")
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
it "should pass block to target" do
|
|
241
|
+
target = mock("target")
|
|
242
|
+
block = lambda { 5 }
|
|
243
|
+
target.should_receive(:items).with("arg1","arg2", block).and_return([1,2,3])
|
|
244
|
+
target.should have(3).items("arg1","arg2", block)
|
|
245
|
+
end
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
describe "have(n).items where target IS a collection" do
|
|
249
|
+
it "should reference the number of items IN the collection" do
|
|
250
|
+
[1,2,3].should have(3).items
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
it "should reference the number of items IN the collection" do
|
|
254
|
+
lambda { [1,2,3].should have(7).items }.should fail_with("expected 7 items, got 3")
|
|
255
|
+
end
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
describe "have(n).characters where target IS a String" do
|
|
259
|
+
it "should pass if the length is correct" do
|
|
260
|
+
"this string".should have(11).characters
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
it "should fail if the length is incorrect" do
|
|
264
|
+
lambda { "this string".should have(12).characters }.should fail_with("expected 12 characters, got 11")
|
|
265
|
+
end
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
describe "have(n).things on an object which is not a collection nor contains one" do
|
|
269
|
+
it "should fail" do
|
|
270
|
+
lambda { Object.new.should have(2).things }.should raise_error(NoMethodError, /undefined method `things' for #<Object:/)
|
|
271
|
+
end
|
|
272
|
+
end
|