tuktuk-rails 0.0.6 → 0.0.7
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.
- checksums.yaml +4 -4
- data/lib/tasks/tuktuk_tasks.rake +0 -1
- data/lib/tuktuk/version.rb +1 -1
- data/{app → vendor}/assets/javascripts/index.js +0 -0
- data/{app → vendor}/assets/javascripts/tuktuk/tuktuk.js +0 -0
- data/{app → vendor}/assets/stylesheets/index.css +0 -0
- data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.css +0 -0
- data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.icons.css +0 -0
- data/{app → vendor}/assets/stylesheets/tuktuk/tuktuk.theme.css +0 -0
- data/vendor/bundle/ruby/2.0.0/bin/autospec +23 -0
- data/vendor/bundle/ruby/2.0.0/bin/htmldiff +25 -0
- data/vendor/bundle/ruby/2.0.0/bin/ldiff +25 -0
- data/vendor/bundle/ruby/2.0.0/bin/rspec +23 -0
- data/vendor/bundle/ruby/2.0.0/build_info/diff-lcs-1.2.5.info +1 -0
- data/vendor/bundle/ruby/2.0.0/build_info/rspec-2.14.1.info +1 -0
- data/vendor/bundle/ruby/2.0.0/build_info/rspec-core-2.14.7.info +1 -0
- data/vendor/bundle/ruby/2.0.0/build_info/rspec-expectations-2.14.4.info +1 -0
- data/vendor/bundle/ruby/2.0.0/build_info/rspec-mocks-2.14.4.info +1 -0
- data/vendor/bundle/ruby/2.0.0/cache/diff-lcs-1.2.5.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-2.14.1.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-core-2.14.7.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-expectations-2.14.4.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/cache/rspec-mocks-2.14.4.gem +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Gemfile +20 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/History.rdoc +152 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/License.rdoc +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/README.rdoc +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/Rakefile +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/ruby/2.0.0/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/License.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/README.md +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-2.14.1/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/Changelog.md +904 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/License.txt +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/README.md +261 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/exe/autospec +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/exe/rspec +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/Autotest.md +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/README.md +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/Upgrade.md +364 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/README.md +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/example_name_option.feature +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/exit_status.feature +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/format_option.feature +75 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/init.feature +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/line_number_appended_to_path.feature +140 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/line_number_option.feature +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/order.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/pattern_option.feature +49 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/rake_task.feature +122 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/require_option.feature +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/ruby.feature +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/tag.feature +98 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/command_line/warnings_option.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/alias_example_to.feature +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/backtrace_clean_patterns.feature +102 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/custom_settings.feature +84 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/default_path.feature +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/deprecation_stream.feature +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/fail_fast.feature +77 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/failure_exit_code.feature +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/order_and_seed.feature +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/output_stream.feature +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/profile.feature +220 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/read_options_from_file.feature +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/run_all_when_everything_filtered.feature +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/show_failures_in_pending_blocks.feature +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/basic_structure.feature +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/shared_context.feature +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/example_groups/shared_examples.feature +294 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/exclusion_filters.feature +138 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/if_and_unless.feature +168 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/filtering/inclusion_filters.feature +105 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/configurable_colors.feature +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/custom_formatter.feature +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/json_formatter.feature +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/formatters/text_formatter.feature +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/arbitrary_methods.feature +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/let.feature +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/helper_methods/modules.feature +149 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/around_hooks.feature +343 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/before_and_after_hooks.feature +427 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/hooks/filtering.feature +234 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/current_example.feature +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/described_class.feature +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/metadata/user_defined.feature +113 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_any_framework.feature +106 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_flexmock.feature +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_mocha.feature +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rr.feature +98 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rspec.feature +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/pending/pending_examples.feature +229 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/step_definitions/additional_cli_steps.rb +49 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/attribute_of_subject.feature +124 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/explicit_subject.feature +101 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/implicit_receiver.feature +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/subject/implicit_subject.feature +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/support/env.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/features/support/rubinius.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/autotest/discover.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/autotest/rspec2.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/autorun.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core.rb +169 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/backtrace_cleaner.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/backward_compatibility.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/command_line.rb +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration.rb +1174 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration_options.rb +156 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/deprecation.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_command_line.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_options.rb +87 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/dsl.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/example.rb +325 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/example_group.rb +479 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/kernel.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/ordered.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/filter_manager.rb +203 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_formatter.rb +246 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_text_formatter.rb +329 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/deprecation_formatter.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_formatter.rb +155 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_printer.rb +408 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/json_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/progress_formatter.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/snippet_extractor.rb +92 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/hooks.rb +519 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/memoized_helpers.rb +514 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata.rb +299 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata_hash_builder.rb +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_flexmock.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_mocha.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rr.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rspec.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/option_parser.rb +219 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/pending.rb +113 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/project_initializer.rb +86 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/rake_task.rb +206 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/reporter.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/ruby_project.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/runner.rb +87 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group.rb +185 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group/collection.rb +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/version.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/lib/rspec/core/world.rb +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/discover_spec.rb +19 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/failed_results_re_spec.rb +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/autotest/rspec_spec.rb +133 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/command_line/order_spec.rb +204 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/backtrace_cleaner_spec.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec.rb +108 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_options_spec.rb +417 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_spec.rb +1561 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecation_spec.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecations_spec.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_command_line_spec.rb +102 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_options_spec.rb +193 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/dsl_spec.rb +25 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/example_group_spec.rb +1187 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/example_spec.rb +465 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/filter_manager_spec.rb +246 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_formatter_spec.rb +108 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_text_formatter_spec.rb +494 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/deprecation_formatter_spec.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/helpers_spec.rb +104 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +404 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +477 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7.html +414 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.2.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +404 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +477 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-2.0.0.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatter_spec.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/json_formatter_spec.rb +115 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/snippet_extractor_spec.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +395 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html +477 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +414 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html +404 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html +477 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html +425 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatter_spec.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_filtering_spec.rb +227 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_spec.rb +267 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/kernel_extensions_spec.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/memoized_helpers_spec.rb +688 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/metadata_spec.rb +491 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/option_parser_spec.rb +242 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/pending_example_spec.rb +220 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/project_initializer_spec.rb +130 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/rake_task_spec.rb +181 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/reporter_spec.rb +141 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_bar.rb +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_foo.rb +0 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_spec.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/formatter_specs.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/utf8_encoded.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/rspec_matchers_spec.rb +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/ruby_project_spec.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/runner_spec.rb +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_context_spec.rb +114 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group/collection_spec.rb +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group_spec.rb +120 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core/world_spec.rb +142 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/rspec/core_spec.rb +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/spec_helper.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/config_options_helper.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/helper_methods.rb +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/in_sub_process.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolate_load_path_mutation.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolated_directory.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/isolated_home_directory.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/matchers.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/mathn_integration_support.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/sandboxed_mock_space.rb +100 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/shared_example_groups.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/spec_files.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/Changelog.md +419 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/License.txt +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/README.md +184 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/README.md +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/Upgrade.md +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/README.md +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/be.feature +175 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/be_within.feature +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/cover.feature +47 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/end_with.feature +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/equality.feature +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/exist.feature +45 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/expect_change.feature +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/expect_error.feature +144 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/have.feature +109 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/include.feature +174 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/match.feature +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/operators.feature +227 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/predicates.feature +137 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/respond_to.feature +84 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/satisfy.feature +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/start_with.feature +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/throw_symbol.feature +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/types.feature +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/built_in_matchers/yield.feature +161 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/access_running_example.feature +53 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_diffable_matcher.feature +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher.feature +368 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/customized_message.feature +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/diffing.feature +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/implicit_docstrings.feature +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/step_definitions/additional_cli_steps.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/support/env.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/support/rubinius.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/syntax_configuration.feature +71 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/features/test_frameworks/test_unit.feature +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec-expectations.rb +1 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations.rb +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/deprecation.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/differ.rb +154 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/errors.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/expectation_target.rb +87 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions.rb +2 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions/array.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/extensions/object.rb +29 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/fail_with.rb +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/handler.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/syntax.rb +164 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/expectations/version.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers.rb +694 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/be_close.rb +9 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be.rb +197 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_instance_of.rb +15 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/be_within.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/change.rb +141 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/cover.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/eq.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/eql.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/equal.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/exist.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/has.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/have.rb +124 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/include.rb +61 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/match.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/match_array.rb +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/raise_error.rb +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/respond_to.rb +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/satisfy.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/throw_symbol.rb +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/yield.rb +296 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/compatibility.rb +14 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/configuration.rb +108 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/dsl.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/generated_descriptions.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/matcher.rb +300 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/method_missing.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/operator_matcher.rb +113 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/pretty.rb +70 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/test_unit_integration.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/differ_spec.rb +229 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/expectation_target_spec.rb +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/fail_with_spec.rb +114 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/handler_spec.rb +227 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations/syntax_spec.rb +139 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/expectations_spec.rb +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/base_matcher_spec.rb +62 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_close_spec.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_instance_of_spec.rb +63 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_kind_of_spec.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_spec.rb +522 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/be_within_spec.rb +137 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/change_spec.rb +567 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/configuration_spec.rb +206 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/cover_spec.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/description_generation_spec.rb +190 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/dsl_spec.rb +57 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/eq_spec.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/eql_spec.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/equal_spec.rb +78 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/exist_spec.rb +124 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/has_spec.rb +122 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/have_spec.rb +455 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/include_matcher_integration_spec.rb +30 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/include_spec.rb +531 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/match_array_spec.rb +194 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/match_spec.rb +74 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/matcher_spec.rb +471 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/matchers_spec.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/method_missing_spec.rb +28 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/operator_matcher_spec.rb +252 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/raise_error_spec.rb +535 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/respond_to_spec.rb +292 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/satisfy_spec.rb +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/start_with_end_with_spec.rb +186 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/throw_symbol_spec.rb +116 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/rspec/matchers/yield_spec.rb +514 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/spec_helper.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/classes.rb +56 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/in_sub_process.rb +38 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/matchers.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/ruby_version.rb +10 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-expectations-2.14.4/spec/support/shared_examples.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/Changelog.md +420 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/License.txt +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/README.md +315 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/README.md +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/Scope.md +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/Upgrade.md +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/README.md +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/explicit.feature +59 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/general_matchers.feature +85 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/argument_matchers/type_matchers.feature +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/README.md +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/allow_any_instance_of.feature +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/any_instance.feature +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/block_local_expectations.feature.pending +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/call_original.feature +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_any_instance_of.feature +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_message_using_expect.feature +107 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/expect_message_using_should_receive.feature +118 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/receive_counts.feature +209 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/README.md +73 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/any_instance.feature +136 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/as_null_object.feature +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/simple_return_value_with_allow.feature +44 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/simple_return_value_with_stub.feature +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/stub_chain.feature +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/stub_implementation.feature +48 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/method_stubs/to_ary.feature +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/README.md +82 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/hiding_defined_constant.feature +64 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/stub_defined_constant.feature +79 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/mutating_constants/stub_undefined_constant.feature +50 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/outside_rspec/configuration.feature +62 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/outside_rspec/standalone.feature +33 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_partial_mock_method.feature +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_pure_mock_method.feature +76 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/spies/spy_unstubbed_method.feature +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/step_definitions/additional_cli_steps.rb +11 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/support/env.rb +13 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/support/rubinius.rb +6 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/features/test_frameworks/test_unit.feature +43 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks.rb +96 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/chain.rb +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/expectation_chain.rb +42 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/recorder.rb +211 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/stub_chain.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/argument_list_matcher.rb +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/argument_matchers.rb +238 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/configuration.rb +55 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/deprecation.rb +18 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/error_generator.rb +179 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/errors.rb +12 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/example_methods.rb +156 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/extensions/marshal.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/framework.rb +34 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/instance_method_stasher.rb +94 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/matchers/have_received.rb +93 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/matchers/receive.rb +97 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/message_expectation.rb +583 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/method_double.rb +271 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/mock.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/mutate_const.rb +403 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/order_group.rb +40 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/proxy.rb +223 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/proxy_for_nil.rb +37 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/space.rb +91 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/syntax.rb +349 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/targets.rb +69 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/test_double.rb +135 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/rspec/mocks/version.rb +7 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/lib/spec/mocks.rb +4 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/and_call_original_spec.rb +243 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/and_yield_spec.rb +127 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_instance/message_chains_spec.rb +41 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_instance_spec.rb +987 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/any_number_of_times_spec.rb +36 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/argument_expectation_spec.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/at_least_spec.rb +151 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/at_most_spec.rb +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/block_return_value_spec.rb +88 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_10263_spec.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/combining_implementation_instructions_spec.rb +205 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/configuration_spec.rb +150 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/double_spec.rb +24 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/extensions/marshal_spec.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/failing_argument_matchers_spec.rb +110 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/instance_method_stasher_spec.rb +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/matchers/have_received_spec.rb +266 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/matchers/receive_spec.rb +336 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/methods_spec.rb +27 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_space_spec.rb +113 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mock_spec.rb +798 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/multiple_return_value_spec.rb +132 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/mutate_const_spec.rb +501 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/nil_expectation_warning_spec.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/null_object_mock_spec.rb +123 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/once_counts_spec.rb +52 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/options_hash_spec.rb +35 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/partial_mock_spec.rb +205 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/precise_counts_spec.rb +68 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/record_messages_spec.rb +26 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/serialization_spec.rb +89 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/space_spec.rb +32 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stash_spec.rb +46 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_chain_spec.rb +154 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_implementation_spec.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stub_spec.rb +353 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/stubbed_message_expectations_spec.rb +58 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +81 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/test_double_spec.rb +67 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/to_ary_spec.rb +54 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks/twice_counts_spec.rb +66 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/rspec/mocks_spec.rb +65 -0
- data/vendor/bundle/ruby/2.0.0/gems/rspec-mocks-2.14.4/spec/spec_helper.rb +60 -0
- data/vendor/bundle/ruby/2.0.0/specifications/diff-lcs-1.2.5.gemspec +65 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-2.14.1.gemspec +39 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-core-2.14.7.gemspec +58 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-expectations-2.14.4.gemspec +40 -0
- data/vendor/bundle/ruby/2.0.0/specifications/rspec-mocks-2.14.4.gemspec +37 -0
- metadata +528 -7
@@ -0,0 +1,164 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Expectations
|
3
|
+
# @api private
|
4
|
+
# Provides methods for enabling and disabling the available
|
5
|
+
# syntaxes provided by rspec-expectations.
|
6
|
+
module Syntax
|
7
|
+
extend self
|
8
|
+
|
9
|
+
# @method should
|
10
|
+
# Passes if `matcher` returns true. Available on every `Object`.
|
11
|
+
# @example
|
12
|
+
# actual.should eq expected
|
13
|
+
# actual.should match /expression/
|
14
|
+
# @param [Matcher]
|
15
|
+
# matcher
|
16
|
+
# @param [String] message optional message to display when the expectation fails
|
17
|
+
# @return [Boolean] true if the expectation succeeds (else raises)
|
18
|
+
# @see RSpec::Matchers
|
19
|
+
|
20
|
+
# @method should_not
|
21
|
+
# Passes if `matcher` returns false. Available on every `Object`.
|
22
|
+
# @example
|
23
|
+
# actual.should_not eq expected
|
24
|
+
# @param [Matcher]
|
25
|
+
# matcher
|
26
|
+
# @param [String] message optional message to display when the expectation fails
|
27
|
+
# @return [Boolean] false if the negative expectation succeeds (else raises)
|
28
|
+
# @see RSpec::Matchers
|
29
|
+
|
30
|
+
# @method expect
|
31
|
+
# Supports `expect(actual).to matcher` syntax by wrapping `actual` in an
|
32
|
+
# `ExpectationTarget`.
|
33
|
+
# @example
|
34
|
+
# expect(actual).to eq(expected)
|
35
|
+
# expect(actual).not_to eq(expected)
|
36
|
+
# @return [ExpectationTarget]
|
37
|
+
# @see ExpectationTarget#to
|
38
|
+
# @see ExpectationTarget#not_to
|
39
|
+
|
40
|
+
# @api private
|
41
|
+
# Determines where we add `should` and `should_not`.
|
42
|
+
def default_should_host
|
43
|
+
@default_should_host ||= ::Object.ancestors.last
|
44
|
+
end
|
45
|
+
|
46
|
+
# @api private
|
47
|
+
# Enables the `should` syntax.
|
48
|
+
def enable_should(syntax_host = default_should_host)
|
49
|
+
return if should_enabled?(syntax_host)
|
50
|
+
|
51
|
+
syntax_host.module_eval do
|
52
|
+
def should(matcher=nil, message=nil, &block)
|
53
|
+
::RSpec::Expectations::PositiveExpectationHandler.handle_matcher(self, matcher, message, &block)
|
54
|
+
end
|
55
|
+
|
56
|
+
def should_not(matcher=nil, message=nil, &block)
|
57
|
+
::RSpec::Expectations::NegativeExpectationHandler.handle_matcher(self, matcher, message, &block)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
::RSpec::Expectations::ExpectationTarget.enable_deprecated_should if expect_enabled?
|
62
|
+
end
|
63
|
+
|
64
|
+
# @api private
|
65
|
+
# Disables the `should` syntax.
|
66
|
+
def disable_should(syntax_host = default_should_host)
|
67
|
+
return unless should_enabled?(syntax_host)
|
68
|
+
|
69
|
+
syntax_host.module_eval do
|
70
|
+
undef should
|
71
|
+
undef should_not
|
72
|
+
end
|
73
|
+
|
74
|
+
::RSpec::Expectations::ExpectationTarget.disable_deprecated_should
|
75
|
+
end
|
76
|
+
|
77
|
+
# @api private
|
78
|
+
# Enables the `expect` syntax.
|
79
|
+
def enable_expect(syntax_host = ::RSpec::Matchers)
|
80
|
+
return if expect_enabled?(syntax_host)
|
81
|
+
|
82
|
+
syntax_host.module_eval do
|
83
|
+
def expect(*target, &target_block)
|
84
|
+
target << target_block if block_given?
|
85
|
+
raise ArgumentError.new("You must pass an argument or a block to #expect but not both.") unless target.size == 1
|
86
|
+
::RSpec::Expectations::ExpectationTarget.new(target.first)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
::RSpec::Expectations::ExpectationTarget.enable_deprecated_should if should_enabled?
|
91
|
+
end
|
92
|
+
|
93
|
+
# @api private
|
94
|
+
# Disables the `expect` syntax.
|
95
|
+
def disable_expect(syntax_host = ::RSpec::Matchers)
|
96
|
+
return unless expect_enabled?(syntax_host)
|
97
|
+
|
98
|
+
syntax_host.module_eval do
|
99
|
+
undef expect
|
100
|
+
end
|
101
|
+
|
102
|
+
::RSpec::Expectations::ExpectationTarget.disable_deprecated_should
|
103
|
+
end
|
104
|
+
|
105
|
+
# @api private
|
106
|
+
# Indicates whether or not the `should` syntax is enabled.
|
107
|
+
def should_enabled?(syntax_host = default_should_host)
|
108
|
+
syntax_host.method_defined?(:should)
|
109
|
+
end
|
110
|
+
|
111
|
+
# @api private
|
112
|
+
# Indicates whether or not the `expect` syntax is enabled.
|
113
|
+
def expect_enabled?(syntax_host = ::RSpec::Matchers)
|
114
|
+
syntax_host.method_defined?(:expect)
|
115
|
+
end
|
116
|
+
|
117
|
+
# @api private
|
118
|
+
# Generates a positive expectation expression.
|
119
|
+
def positive_expression(target_expression, matcher_expression)
|
120
|
+
expression_generator.positive_expression(target_expression, matcher_expression)
|
121
|
+
end
|
122
|
+
|
123
|
+
# @api private
|
124
|
+
# Generates a negative expectation expression.
|
125
|
+
def negative_expression(target_expression, matcher_expression)
|
126
|
+
expression_generator.negative_expression(target_expression, matcher_expression)
|
127
|
+
end
|
128
|
+
|
129
|
+
# @api private
|
130
|
+
# Selects which expression generator to use based on the configured syntax.
|
131
|
+
def expression_generator
|
132
|
+
if expect_enabled?
|
133
|
+
ExpectExpressionGenerator
|
134
|
+
else
|
135
|
+
ShouldExpressionGenerator
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
# @api private
|
140
|
+
# Generates expectation expressions for the `should` syntax.
|
141
|
+
module ShouldExpressionGenerator
|
142
|
+
def self.positive_expression(target_expression, matcher_expression)
|
143
|
+
"#{target_expression}.should #{matcher_expression}"
|
144
|
+
end
|
145
|
+
|
146
|
+
def self.negative_expression(target_expression, matcher_expression)
|
147
|
+
"#{target_expression}.should_not #{matcher_expression}"
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
# @api private
|
152
|
+
# Generates expectation expressions for the `expect` syntax.
|
153
|
+
module ExpectExpressionGenerator
|
154
|
+
def self.positive_expression(target_expression, matcher_expression)
|
155
|
+
"expect(#{target_expression}).to #{matcher_expression}"
|
156
|
+
end
|
157
|
+
|
158
|
+
def self.negative_expression(target_expression, matcher_expression)
|
159
|
+
"expect(#{target_expression}).not_to #{matcher_expression}"
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
@@ -0,0 +1,694 @@
|
|
1
|
+
require 'rspec/matchers/extensions/instance_eval_with_args'
|
2
|
+
require 'rspec/matchers/pretty'
|
3
|
+
|
4
|
+
require 'rspec/matchers/built_in'
|
5
|
+
require 'rspec/matchers/matcher'
|
6
|
+
require 'rspec/matchers/operator_matcher'
|
7
|
+
require 'rspec/matchers/be_close'
|
8
|
+
|
9
|
+
require 'rspec/matchers/generated_descriptions'
|
10
|
+
require 'rspec/matchers/method_missing'
|
11
|
+
require 'rspec/matchers/compatibility'
|
12
|
+
require 'rspec/matchers/dsl'
|
13
|
+
require 'rspec/matchers/test_unit_integration'
|
14
|
+
|
15
|
+
module RSpec
|
16
|
+
# RSpec::Matchers provides a number of useful matchers we use to define
|
17
|
+
# expectations. A matcher is any object that responds to the following:
|
18
|
+
#
|
19
|
+
# matches?(actual)
|
20
|
+
# failure_message_for_should
|
21
|
+
#
|
22
|
+
# These methods are also part of the matcher protocol, but are optional:
|
23
|
+
#
|
24
|
+
# does_not_match?(actual)
|
25
|
+
# failure_message_for_should_not
|
26
|
+
# description
|
27
|
+
#
|
28
|
+
# ## Predicates
|
29
|
+
#
|
30
|
+
# In addition to matchers that are defined explicitly, RSpec will create
|
31
|
+
# custom matchers on the fly for any arbitrary predicate, giving your specs a
|
32
|
+
# much more natural language feel.
|
33
|
+
#
|
34
|
+
# A Ruby predicate is a method that ends with a "?" and returns true or false.
|
35
|
+
# Common examples are `empty?`, `nil?`, and `instance_of?`.
|
36
|
+
#
|
37
|
+
# All you need to do is write `expect(..).to be_` followed by the predicate
|
38
|
+
# without the question mark, and RSpec will figure it out from there.
|
39
|
+
# For example:
|
40
|
+
#
|
41
|
+
# expect([]).to be_empty # => [].empty?() | passes
|
42
|
+
# expect([]).not_to be_empty # => [].empty?() | fails
|
43
|
+
#
|
44
|
+
# In addtion to prefixing the predicate matchers with "be_", you can also use "be_a_"
|
45
|
+
# and "be_an_", making your specs read much more naturally:
|
46
|
+
#
|
47
|
+
# expect("a string").to be_an_instance_of(String) # =>"a string".instance_of?(String) # passes
|
48
|
+
#
|
49
|
+
# expect(3).to be_a_kind_of(Fixnum) # => 3.kind_of?(Numeric) | passes
|
50
|
+
# expect(3).to be_a_kind_of(Numeric) # => 3.kind_of?(Numeric) | passes
|
51
|
+
# expect(3).to be_an_instance_of(Fixnum) # => 3.instance_of?(Fixnum) | passes
|
52
|
+
# expect(3).not_to be_an_instance_of(Numeric) # => 3.instance_of?(Numeric) | fails
|
53
|
+
#
|
54
|
+
# RSpec will also create custom matchers for predicates like `has_key?`. To
|
55
|
+
# use this feature, just state that the object should have_key(:key) and RSpec will
|
56
|
+
# call has_key?(:key) on the target. For example:
|
57
|
+
#
|
58
|
+
# expect(:a => "A").to have_key(:a)
|
59
|
+
# expect(:a => "A").to have_key(:b) # fails
|
60
|
+
#
|
61
|
+
# You can use this feature to invoke any predicate that begins with "has_", whether it is
|
62
|
+
# part of the Ruby libraries (like `Hash#has_key?`) or a method you wrote on your own class.
|
63
|
+
#
|
64
|
+
# ## Custom Matchers
|
65
|
+
#
|
66
|
+
# When you find that none of the stock matchers provide a natural feeling
|
67
|
+
# expectation, you can very easily write your own using RSpec's matcher DSL
|
68
|
+
# or writing one from scratch.
|
69
|
+
#
|
70
|
+
# ### Matcher DSL
|
71
|
+
#
|
72
|
+
# Imagine that you are writing a game in which players can be in various
|
73
|
+
# zones on a virtual board. To specify that bob should be in zone 4, you
|
74
|
+
# could say:
|
75
|
+
#
|
76
|
+
# expect(bob.current_zone).to eql(Zone.new("4"))
|
77
|
+
#
|
78
|
+
# But you might find it more expressive to say:
|
79
|
+
#
|
80
|
+
# expect(bob).to be_in_zone("4")
|
81
|
+
#
|
82
|
+
# and/or
|
83
|
+
#
|
84
|
+
# expect(bob).not_to be_in_zone("3")
|
85
|
+
#
|
86
|
+
# You can create such a matcher like so:
|
87
|
+
#
|
88
|
+
# RSpec::Matchers.define :be_in_zone do |zone|
|
89
|
+
# match do |player|
|
90
|
+
# player.in_zone?(zone)
|
91
|
+
# end
|
92
|
+
# end
|
93
|
+
#
|
94
|
+
# This will generate a <tt>be_in_zone</tt> method that returns a matcher
|
95
|
+
# with logical default messages for failures. You can override the failure
|
96
|
+
# messages and the generated description as follows:
|
97
|
+
#
|
98
|
+
# RSpec::Matchers.define :be_in_zone do |zone|
|
99
|
+
# match do |player|
|
100
|
+
# player.in_zone?(zone)
|
101
|
+
# end
|
102
|
+
#
|
103
|
+
# failure_message_for_should do |player|
|
104
|
+
# # generate and return the appropriate string.
|
105
|
+
# end
|
106
|
+
#
|
107
|
+
# failure_message_for_should_not do |player|
|
108
|
+
# # generate and return the appropriate string.
|
109
|
+
# end
|
110
|
+
#
|
111
|
+
# description do
|
112
|
+
# # generate and return the appropriate string.
|
113
|
+
# end
|
114
|
+
# end
|
115
|
+
#
|
116
|
+
# Each of the message-generation methods has access to the block arguments
|
117
|
+
# passed to the <tt>create</tt> method (in this case, <tt>zone</tt>). The
|
118
|
+
# failure message methods (<tt>failure_message_for_should</tt> and
|
119
|
+
# <tt>failure_message_for_should_not</tt>) are passed the actual value (the
|
120
|
+
# receiver of <tt>expect(..)</tt> or <tt>expect(..).not_to</tt>).
|
121
|
+
#
|
122
|
+
# ### Custom Matcher from scratch
|
123
|
+
#
|
124
|
+
# You could also write a custom matcher from scratch, as follows:
|
125
|
+
#
|
126
|
+
# class BeInZone
|
127
|
+
# def initialize(expected)
|
128
|
+
# @expected = expected
|
129
|
+
# end
|
130
|
+
#
|
131
|
+
# def matches?(target)
|
132
|
+
# @target = target
|
133
|
+
# @target.current_zone.eql?(Zone.new(@expected))
|
134
|
+
# end
|
135
|
+
#
|
136
|
+
# def failure_message_for_should
|
137
|
+
# "expected #{@target.inspect} to be in Zone #{@expected}"
|
138
|
+
# end
|
139
|
+
#
|
140
|
+
# def failure_message_for_should_not
|
141
|
+
# "expected #{@target.inspect} not to be in Zone #{@expected}"
|
142
|
+
# end
|
143
|
+
# end
|
144
|
+
#
|
145
|
+
# ... and a method like this:
|
146
|
+
#
|
147
|
+
# def be_in_zone(expected)
|
148
|
+
# BeInZone.new(expected)
|
149
|
+
# end
|
150
|
+
#
|
151
|
+
# And then expose the method to your specs. This is normally done
|
152
|
+
# by including the method and the class in a module, which is then
|
153
|
+
# included in your spec:
|
154
|
+
#
|
155
|
+
# module CustomGameMatchers
|
156
|
+
# class BeInZone
|
157
|
+
# # ...
|
158
|
+
# end
|
159
|
+
#
|
160
|
+
# def be_in_zone(expected)
|
161
|
+
# # ...
|
162
|
+
# end
|
163
|
+
# end
|
164
|
+
#
|
165
|
+
# describe "Player behaviour" do
|
166
|
+
# include CustomGameMatchers
|
167
|
+
# # ...
|
168
|
+
# end
|
169
|
+
#
|
170
|
+
# or you can include in globally in a spec_helper.rb file <tt>require</tt>d
|
171
|
+
# from your spec file(s):
|
172
|
+
#
|
173
|
+
# RSpec::configure do |config|
|
174
|
+
# config.include(CustomGameMatchers)
|
175
|
+
# end
|
176
|
+
module Matchers
|
177
|
+
# @api private
|
178
|
+
def self.is_a_matcher?(obj)
|
179
|
+
return true if ::RSpec::Matchers::BuiltIn::BaseMatcher === obj
|
180
|
+
return false if obj.respond_to?(:i_respond_to_everything_so_im_not_really_a_matcher)
|
181
|
+
return false unless obj.respond_to?(:matches?)
|
182
|
+
|
183
|
+
obj.respond_to?(:failure_message_for_should) || obj.respond_to?(:failure_message)
|
184
|
+
end
|
185
|
+
|
186
|
+
# Passes if actual is truthy (anything but false or nil)
|
187
|
+
def be_true
|
188
|
+
BuiltIn::BeTrue.new
|
189
|
+
end
|
190
|
+
|
191
|
+
# Passes if actual is falsy (false or nil)
|
192
|
+
def be_false
|
193
|
+
BuiltIn::BeFalse.new
|
194
|
+
end
|
195
|
+
|
196
|
+
# Passes if actual is nil
|
197
|
+
def be_nil
|
198
|
+
BuiltIn::BeNil.new
|
199
|
+
end
|
200
|
+
|
201
|
+
# @example
|
202
|
+
# expect(actual).to be_true
|
203
|
+
# expect(actual).to be_false
|
204
|
+
# expect(actual).to be_nil
|
205
|
+
# expect(actual).to be_[arbitrary_predicate](*args)
|
206
|
+
# expect(actual).not_to be_nil
|
207
|
+
# expect(actual).not_to be_[arbitrary_predicate](*args)
|
208
|
+
#
|
209
|
+
# Given true, false, or nil, will pass if actual value is true, false or
|
210
|
+
# nil (respectively). Given no args means the caller should satisfy an if
|
211
|
+
# condition (to be or not to be).
|
212
|
+
#
|
213
|
+
# Predicates are any Ruby method that ends in a "?" and returns true or
|
214
|
+
# false. Given be_ followed by arbitrary_predicate (without the "?"),
|
215
|
+
# RSpec will match convert that into a query against the target object.
|
216
|
+
#
|
217
|
+
# The arbitrary_predicate feature will handle any predicate prefixed with
|
218
|
+
# "be_an_" (e.g. be_an_instance_of), "be_a_" (e.g. be_a_kind_of) or "be_"
|
219
|
+
# (e.g. be_empty), letting you choose the prefix that best suits the
|
220
|
+
# predicate.
|
221
|
+
def be(*args)
|
222
|
+
args.empty? ?
|
223
|
+
Matchers::BuiltIn::Be.new : equal(*args)
|
224
|
+
end
|
225
|
+
|
226
|
+
# passes if target.kind_of?(klass)
|
227
|
+
def be_a(klass)
|
228
|
+
be_a_kind_of(klass)
|
229
|
+
end
|
230
|
+
|
231
|
+
alias_method :be_an, :be_a
|
232
|
+
|
233
|
+
# Passes if actual.instance_of?(expected)
|
234
|
+
#
|
235
|
+
# @example
|
236
|
+
#
|
237
|
+
# expect(5).to be_an_instance_of(Fixnum)
|
238
|
+
# expect(5).not_to be_an_instance_of(Numeric)
|
239
|
+
# expect(5).not_to be_an_instance_of(Float)
|
240
|
+
def be_an_instance_of(expected)
|
241
|
+
BuiltIn::BeAnInstanceOf.new(expected)
|
242
|
+
end
|
243
|
+
|
244
|
+
alias_method :be_instance_of, :be_an_instance_of
|
245
|
+
|
246
|
+
# Passes if actual.kind_of?(expected)
|
247
|
+
#
|
248
|
+
# @example
|
249
|
+
#
|
250
|
+
# expect(5).to be_a_kind_of(Fixnum)
|
251
|
+
# expect(5).to be_a_kind_of(Numeric)
|
252
|
+
# expect(5).not_to be_a_kind_of(Float)
|
253
|
+
def be_a_kind_of(expected)
|
254
|
+
BuiltIn::BeAKindOf.new(expected)
|
255
|
+
end
|
256
|
+
|
257
|
+
alias_method :be_kind_of, :be_a_kind_of
|
258
|
+
|
259
|
+
# Passes if actual == expected +/- delta
|
260
|
+
#
|
261
|
+
# @example
|
262
|
+
#
|
263
|
+
# expect(result).to be_within(0.5).of(3.0)
|
264
|
+
# expect(result).not_to be_within(0.5).of(3.0)
|
265
|
+
def be_within(delta)
|
266
|
+
BuiltIn::BeWithin.new(delta)
|
267
|
+
end
|
268
|
+
|
269
|
+
# Applied to a proc, specifies that its execution will cause some value to
|
270
|
+
# change.
|
271
|
+
#
|
272
|
+
# @param [Object] receiver
|
273
|
+
# @param [Symbol] message the message to send the receiver
|
274
|
+
#
|
275
|
+
# You can either pass <tt>receiver</tt> and <tt>message</tt>, or a block,
|
276
|
+
# but not both.
|
277
|
+
#
|
278
|
+
# When passing a block, it must use the <tt>{ ... }</tt> format, not
|
279
|
+
# do/end, as <tt>{ ... }</tt> binds to the +change+ method, whereas do/end
|
280
|
+
# would errantly bind to the +expect(..)+ or +expect(..).not_to+ method.
|
281
|
+
#
|
282
|
+
# @example
|
283
|
+
#
|
284
|
+
# expect {
|
285
|
+
# team.add_player(player)
|
286
|
+
# }.to change(roster, :count)
|
287
|
+
#
|
288
|
+
# expect {
|
289
|
+
# team.add_player(player)
|
290
|
+
# }.to change(roster, :count).by(1)
|
291
|
+
#
|
292
|
+
# expect {
|
293
|
+
# team.add_player(player)
|
294
|
+
# }.to change(roster, :count).by_at_least(1)
|
295
|
+
#
|
296
|
+
# expect {
|
297
|
+
# team.add_player(player)
|
298
|
+
# }.to change(roster, :count).by_at_most(1)
|
299
|
+
#
|
300
|
+
# string = "string"
|
301
|
+
# expect {
|
302
|
+
# string.reverse!
|
303
|
+
# }.to change { string }.from("string").to("gnirts")
|
304
|
+
#
|
305
|
+
# string = "string"
|
306
|
+
# expect {
|
307
|
+
# string
|
308
|
+
# }.not_to change { string }
|
309
|
+
#
|
310
|
+
# expect {
|
311
|
+
# person.happy_birthday
|
312
|
+
# }.to change(person, :birthday).from(32).to(33)
|
313
|
+
#
|
314
|
+
# expect {
|
315
|
+
# employee.develop_great_new_social_networking_app
|
316
|
+
# }.to change(employee, :title).from("Mail Clerk").to("CEO")
|
317
|
+
#
|
318
|
+
# expect {
|
319
|
+
# doctor.leave_office
|
320
|
+
# }.to change(doctor, :sign).from(/is in/).to(/is out/)
|
321
|
+
#
|
322
|
+
# user = User.new(:type => "admin")
|
323
|
+
# expect {
|
324
|
+
# user.symbolize_type
|
325
|
+
# }.to change(user, :type).from(String).to(Symbol)
|
326
|
+
#
|
327
|
+
# == Notes
|
328
|
+
#
|
329
|
+
# Evaluates <tt>receiver.message</tt> or <tt>block</tt> before and after it
|
330
|
+
# evaluates the block passed to <tt>expect</tt>.
|
331
|
+
#
|
332
|
+
# <tt>expect( ... ).not_to change</tt> only supports the form with no subsequent
|
333
|
+
# calls to <tt>by</tt>, <tt>by_at_least</tt>, <tt>by_at_most</tt>,
|
334
|
+
# <tt>to</tt> or <tt>from</tt>.
|
335
|
+
def change(receiver=nil, message=nil, &block)
|
336
|
+
BuiltIn::Change.new(receiver, message, &block)
|
337
|
+
end
|
338
|
+
|
339
|
+
# Passes if actual covers expected. This works for
|
340
|
+
# Ranges. You can also pass in multiple args
|
341
|
+
# and it will only pass if all args are found in Range.
|
342
|
+
#
|
343
|
+
# @example
|
344
|
+
# expect(1..10).to cover(5)
|
345
|
+
# expect(1..10).to cover(4, 6)
|
346
|
+
# expect(1..10).to cover(4, 6, 11) # fails
|
347
|
+
# expect(1..10).not_to cover(11)
|
348
|
+
# expect(1..10).not_to cover(5) # fails
|
349
|
+
#
|
350
|
+
# ### Warning:: Ruby >= 1.9 only
|
351
|
+
def cover(*values)
|
352
|
+
BuiltIn::Cover.new(*values)
|
353
|
+
end if (1..2).respond_to?(:cover?)
|
354
|
+
|
355
|
+
# Matches if the actual value ends with the expected value(s). In the case
|
356
|
+
# of a string, matches against the last `expected.length` characters of the
|
357
|
+
# actual string. In the case of an array, matches against the last
|
358
|
+
# `expected.length` elements of the actual array.
|
359
|
+
#
|
360
|
+
# @example
|
361
|
+
#
|
362
|
+
# expect("this string").to end_with "string"
|
363
|
+
# expect([0, 1, 2, 3, 4]).to end_with 4
|
364
|
+
# expect([0, 2, 3, 4, 4]).to end_with 3, 4
|
365
|
+
def end_with(*expected)
|
366
|
+
BuiltIn::EndWith.new(*expected)
|
367
|
+
end
|
368
|
+
|
369
|
+
# Passes if <tt>actual == expected</tt>.
|
370
|
+
#
|
371
|
+
# See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
|
372
|
+
# information about equality in Ruby.
|
373
|
+
#
|
374
|
+
# @example
|
375
|
+
#
|
376
|
+
# expect(5).to eq(5)
|
377
|
+
# expect(5).not_to eq(3)
|
378
|
+
def eq(expected)
|
379
|
+
BuiltIn::Eq.new(expected)
|
380
|
+
end
|
381
|
+
|
382
|
+
# Passes if +actual.eql?(expected)+
|
383
|
+
#
|
384
|
+
# See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
|
385
|
+
# information about equality in Ruby.
|
386
|
+
#
|
387
|
+
# @example
|
388
|
+
#
|
389
|
+
# expect(5).to eql(5)
|
390
|
+
# expect(5).not_to eql(3)
|
391
|
+
def eql(expected)
|
392
|
+
BuiltIn::Eql.new(expected)
|
393
|
+
end
|
394
|
+
|
395
|
+
# Passes if <tt>actual.equal?(expected)</tt> (object identity).
|
396
|
+
#
|
397
|
+
# See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
|
398
|
+
# information about equality in Ruby.
|
399
|
+
#
|
400
|
+
# @example
|
401
|
+
#
|
402
|
+
# expect(5).to equal(5) # Fixnums are equal
|
403
|
+
# expect("5").not_to equal("5") # Strings that look the same are not the same object
|
404
|
+
def equal(expected)
|
405
|
+
BuiltIn::Equal.new(expected)
|
406
|
+
end
|
407
|
+
|
408
|
+
# Passes if `actual.exist?` or `actual.exists?`
|
409
|
+
#
|
410
|
+
# @example
|
411
|
+
# expect(File).to exist("path/to/file")
|
412
|
+
def exist(*args)
|
413
|
+
BuiltIn::Exist.new(*args)
|
414
|
+
end
|
415
|
+
|
416
|
+
# Passes if receiver is a collection with the submitted number of items OR
|
417
|
+
# if the receiver OWNS a collection with the submitted number of items.
|
418
|
+
#
|
419
|
+
# If the receiver OWNS the collection, you must use the name of the
|
420
|
+
# collection. So if a `Team` instance has a collection named `#players`,
|
421
|
+
# you must use that name to set the expectation.
|
422
|
+
#
|
423
|
+
# If the receiver IS the collection, you can use any name you like for
|
424
|
+
# `named_collection`. We'd recommend using either "elements", "members", or
|
425
|
+
# "items" as these are all standard ways of describing the things IN a
|
426
|
+
# collection.
|
427
|
+
#
|
428
|
+
# This also works for Strings, letting you set expectations about their
|
429
|
+
# lengths.
|
430
|
+
#
|
431
|
+
# @example
|
432
|
+
#
|
433
|
+
# # Passes if team.players.size == 11
|
434
|
+
# expect(team).to have(11).players
|
435
|
+
#
|
436
|
+
# # Passes if [1,2,3].length == 3
|
437
|
+
# expect([1,2,3]).to have(3).items #"items" is pure sugar
|
438
|
+
#
|
439
|
+
# # Passes if ['a', 'b', 'c'].count == 3
|
440
|
+
# expect([1,2,3]).to have(3).items #"items" is pure sugar
|
441
|
+
#
|
442
|
+
# # Passes if "this string".length == 11
|
443
|
+
# expect("this string").to have(11).characters #"characters" is pure sugar
|
444
|
+
def have(n)
|
445
|
+
BuiltIn::Have.new(n)
|
446
|
+
end
|
447
|
+
alias :have_exactly :have
|
448
|
+
|
449
|
+
# Exactly like have() with >=.
|
450
|
+
#
|
451
|
+
# @example
|
452
|
+
# expect("this").to have_at_least(3).letters
|
453
|
+
#
|
454
|
+
# ### Warning:
|
455
|
+
#
|
456
|
+
# `expect(..).not_to have_at_least` is not supported
|
457
|
+
def have_at_least(n)
|
458
|
+
BuiltIn::Have.new(n, :at_least)
|
459
|
+
end
|
460
|
+
|
461
|
+
# Exactly like have() with <=.
|
462
|
+
#
|
463
|
+
# @example
|
464
|
+
# expect("this").to have_at_most(4).letters
|
465
|
+
#
|
466
|
+
# ### Warning:
|
467
|
+
#
|
468
|
+
# `expect(..).not_to have_at_most` is not supported
|
469
|
+
def have_at_most(n)
|
470
|
+
BuiltIn::Have.new(n, :at_most)
|
471
|
+
end
|
472
|
+
|
473
|
+
# Passes if actual includes expected. This works for
|
474
|
+
# collections and Strings. You can also pass in multiple args
|
475
|
+
# and it will only pass if all args are found in collection.
|
476
|
+
#
|
477
|
+
# @example
|
478
|
+
#
|
479
|
+
# expect([1,2,3]).to include(3)
|
480
|
+
# expect([1,2,3]).to include(2,3)
|
481
|
+
# expect([1,2,3]).to include(2,3,4) # fails
|
482
|
+
# expect([1,2,3]).not_to include(4)
|
483
|
+
# expect("spread").to include("read")
|
484
|
+
# expect("spread").not_to include("red")
|
485
|
+
def include(*expected)
|
486
|
+
BuiltIn::Include.new(*expected)
|
487
|
+
end
|
488
|
+
|
489
|
+
# Given a Regexp or String, passes if actual.match(pattern)
|
490
|
+
#
|
491
|
+
# @example
|
492
|
+
#
|
493
|
+
# expect(email).to match(/^([^\s]+)((?:[-a-z0-9]+\.)+[a-z]{2,})$/i)
|
494
|
+
# expect(email).to match("@example.com")
|
495
|
+
# expect(zipcode).to match_regex(/\A\d{5}(-\d{4})?\z/)
|
496
|
+
# expect(zipcode).to match_regex("90210")
|
497
|
+
#
|
498
|
+
# @note Due to Ruby's method dispatch mechanism, using the `#match` matcher
|
499
|
+
# within a custom matcher defined via the matcher DSL
|
500
|
+
# (`RSpec::Matcher.define`) will result Ruby calling the wrong `#match`
|
501
|
+
# method and raising an `ArgumentError`. Instead, use the aliased
|
502
|
+
# `#match_regex` method.
|
503
|
+
def match(expected)
|
504
|
+
BuiltIn::Match.new(expected)
|
505
|
+
end
|
506
|
+
|
507
|
+
alias_method :match_regex, :match
|
508
|
+
|
509
|
+
# With no args, matches if any error is raised.
|
510
|
+
# With a named error, matches only if that specific error is raised.
|
511
|
+
# With a named error and messsage specified as a String, matches only if both match.
|
512
|
+
# With a named error and messsage specified as a Regexp, matches only if both match.
|
513
|
+
# Pass an optional block to perform extra verifications on the exception matched
|
514
|
+
#
|
515
|
+
# @example
|
516
|
+
#
|
517
|
+
# expect { do_something_risky }.to raise_error
|
518
|
+
# expect { do_something_risky }.to raise_error(PoorRiskDecisionError)
|
519
|
+
# expect { do_something_risky }.to raise_error(PoorRiskDecisionError) { |error| expect(error.data).to eq 42 }
|
520
|
+
# expect { do_something_risky }.to raise_error(PoorRiskDecisionError, "that was too risky")
|
521
|
+
# expect { do_something_risky }.to raise_error(PoorRiskDecisionError, /oo ri/)
|
522
|
+
#
|
523
|
+
# expect { do_something_risky }.not_to raise_error
|
524
|
+
def raise_error(error=Exception, message=nil, &block)
|
525
|
+
BuiltIn::RaiseError.new(error, message, &block)
|
526
|
+
end
|
527
|
+
|
528
|
+
alias_method :raise_exception, :raise_error
|
529
|
+
|
530
|
+
# Matches if the target object responds to all of the names
|
531
|
+
# provided. Names can be Strings or Symbols.
|
532
|
+
#
|
533
|
+
# @example
|
534
|
+
#
|
535
|
+
# expect("string").to respond_to(:length)
|
536
|
+
#
|
537
|
+
def respond_to(*names)
|
538
|
+
BuiltIn::RespondTo.new(*names)
|
539
|
+
end
|
540
|
+
|
541
|
+
# Passes if the submitted block returns true. Yields target to the
|
542
|
+
# block.
|
543
|
+
#
|
544
|
+
# Generally speaking, this should be thought of as a last resort when
|
545
|
+
# you can't find any other way to specify the behaviour you wish to
|
546
|
+
# specify.
|
547
|
+
#
|
548
|
+
# If you do find yourself in such a situation, you could always write
|
549
|
+
# a custom matcher, which would likely make your specs more expressive.
|
550
|
+
#
|
551
|
+
# @example
|
552
|
+
#
|
553
|
+
# expect(5).to satisfy { |n| n > 3 }
|
554
|
+
def satisfy(&block)
|
555
|
+
BuiltIn::Satisfy.new(&block)
|
556
|
+
end
|
557
|
+
|
558
|
+
# Matches if the actual value starts with the expected value(s). In the
|
559
|
+
# case of a string, matches against the first `expected.length` characters
|
560
|
+
# of the actual string. In the case of an array, matches against the first
|
561
|
+
# `expected.length` elements of the actual array.
|
562
|
+
#
|
563
|
+
# @example
|
564
|
+
#
|
565
|
+
# expect("this string").to start_with "this s"
|
566
|
+
# expect([0, 1, 2, 3, 4]).to start_with 0
|
567
|
+
# expect([0, 2, 3, 4, 4]).to start_with 0, 1
|
568
|
+
def start_with(*expected)
|
569
|
+
BuiltIn::StartWith.new(*expected)
|
570
|
+
end
|
571
|
+
|
572
|
+
# Given no argument, matches if a proc throws any Symbol.
|
573
|
+
#
|
574
|
+
# Given a Symbol, matches if the given proc throws the specified Symbol.
|
575
|
+
#
|
576
|
+
# Given a Symbol and an arg, matches if the given proc throws the
|
577
|
+
# specified Symbol with the specified arg.
|
578
|
+
#
|
579
|
+
# @example
|
580
|
+
#
|
581
|
+
# expect { do_something_risky }.to throw_symbol
|
582
|
+
# expect { do_something_risky }.to throw_symbol(:that_was_risky)
|
583
|
+
# expect { do_something_risky }.to throw_symbol(:that_was_risky, 'culprit')
|
584
|
+
#
|
585
|
+
# expect { do_something_risky }.not_to throw_symbol
|
586
|
+
# expect { do_something_risky }.not_to throw_symbol(:that_was_risky)
|
587
|
+
# expect { do_something_risky }.not_to throw_symbol(:that_was_risky, 'culprit')
|
588
|
+
def throw_symbol(expected_symbol=nil, expected_arg=nil)
|
589
|
+
BuiltIn::ThrowSymbol.new(expected_symbol, expected_arg)
|
590
|
+
end
|
591
|
+
|
592
|
+
# Passes if the method called in the expect block yields, regardless
|
593
|
+
# of whether or not arguments are yielded.
|
594
|
+
#
|
595
|
+
# @example
|
596
|
+
#
|
597
|
+
# expect { |b| 5.tap(&b) }.to yield_control
|
598
|
+
# expect { |b| "a".to_sym(&b) }.not_to yield_control
|
599
|
+
#
|
600
|
+
# @note Your expect block must accept a parameter and pass it on to
|
601
|
+
# the method-under-test as a block.
|
602
|
+
# @note This matcher is not designed for use with methods that yield
|
603
|
+
# multiple times.
|
604
|
+
def yield_control
|
605
|
+
BuiltIn::YieldControl.new
|
606
|
+
end
|
607
|
+
|
608
|
+
# Passes if the method called in the expect block yields with
|
609
|
+
# no arguments. Fails if it does not yield, or yields with arguments.
|
610
|
+
#
|
611
|
+
# @example
|
612
|
+
#
|
613
|
+
# expect { |b| User.transaction(&b) }.to yield_with_no_args
|
614
|
+
# expect { |b| 5.tap(&b) }.not_to yield_with_no_args # because it yields with `5`
|
615
|
+
# expect { |b| "a".to_sym(&b) }.not_to yield_with_no_args # because it does not yield
|
616
|
+
#
|
617
|
+
# @note Your expect block must accept a parameter and pass it on to
|
618
|
+
# the method-under-test as a block.
|
619
|
+
# @note This matcher is not designed for use with methods that yield
|
620
|
+
# multiple times.
|
621
|
+
def yield_with_no_args
|
622
|
+
BuiltIn::YieldWithNoArgs.new
|
623
|
+
end
|
624
|
+
|
625
|
+
# Given no arguments, matches if the method called in the expect
|
626
|
+
# block yields with arguments (regardless of what they are or how
|
627
|
+
# many there are).
|
628
|
+
#
|
629
|
+
# Given arguments, matches if the method called in the expect block
|
630
|
+
# yields with arguments that match the given arguments.
|
631
|
+
#
|
632
|
+
# Argument matching is done using `===` (the case match operator)
|
633
|
+
# and `==`. If the expected and actual arguments match with either
|
634
|
+
# operator, the matcher will pass.
|
635
|
+
#
|
636
|
+
# @example
|
637
|
+
#
|
638
|
+
# expect { |b| 5.tap(&b) }.to yield_with_args # because #tap yields an arg
|
639
|
+
# expect { |b| 5.tap(&b) }.to yield_with_args(5) # because 5 == 5
|
640
|
+
# expect { |b| 5.tap(&b) }.to yield_with_args(Fixnum) # because Fixnum === 5
|
641
|
+
# expect { |b| File.open("f.txt", &b) }.to yield_with_args(/txt/) # because /txt/ === "f.txt"
|
642
|
+
#
|
643
|
+
# expect { |b| User.transaction(&b) }.not_to yield_with_args # because it yields no args
|
644
|
+
# expect { |b| 5.tap(&b) }.not_to yield_with_args(1, 2, 3)
|
645
|
+
#
|
646
|
+
# @note Your expect block must accept a parameter and pass it on to
|
647
|
+
# the method-under-test as a block.
|
648
|
+
# @note This matcher is not designed for use with methods that yield
|
649
|
+
# multiple times.
|
650
|
+
def yield_with_args(*args)
|
651
|
+
BuiltIn::YieldWithArgs.new(*args)
|
652
|
+
end
|
653
|
+
|
654
|
+
# Designed for use with methods that repeatedly yield (such as
|
655
|
+
# iterators). Passes if the method called in the expect block yields
|
656
|
+
# multiple times with arguments matching those given.
|
657
|
+
#
|
658
|
+
# Argument matching is done using `===` (the case match operator)
|
659
|
+
# and `==`. If the expected and actual arguments match with either
|
660
|
+
# operator, the matcher will pass.
|
661
|
+
#
|
662
|
+
# @example
|
663
|
+
#
|
664
|
+
# expect { |b| [1, 2, 3].each(&b) }.to yield_successive_args(1, 2, 3)
|
665
|
+
# expect { |b| { :a => 1, :b => 2 }.each(&b) }.to yield_successive_args([:a, 1], [:b, 2])
|
666
|
+
# expect { |b| [1, 2, 3].each(&b) }.not_to yield_successive_args(1, 2)
|
667
|
+
#
|
668
|
+
# @note Your expect block must accept a parameter and pass it on to
|
669
|
+
# the method-under-test as a block.
|
670
|
+
def yield_successive_args(*args)
|
671
|
+
BuiltIn::YieldSuccessiveArgs.new(*args)
|
672
|
+
end
|
673
|
+
|
674
|
+
# Passes if actual contains all of the expected regardless of order.
|
675
|
+
# This works for collections. Pass in multiple args and it will only
|
676
|
+
# pass if all args are found in collection.
|
677
|
+
#
|
678
|
+
# @note This is also available using the `=~` operator with `should`,
|
679
|
+
# but `=~` is not supported with `expect`.
|
680
|
+
#
|
681
|
+
# @note This matcher only supports positive expectations.
|
682
|
+
# expect(..).not_to match_array(other_array) is not supported.
|
683
|
+
#
|
684
|
+
# @example
|
685
|
+
#
|
686
|
+
# expect([1,2,3]).to match_array([1,2,3])
|
687
|
+
# expect([1,2,3]).to match_array([1,3,2])
|
688
|
+
def match_array(array)
|
689
|
+
BuiltIn::MatchArray.new(array)
|
690
|
+
end
|
691
|
+
|
692
|
+
OperatorMatcher.register(Enumerable, '=~', BuiltIn::MatchArray)
|
693
|
+
end
|
694
|
+
end
|