2371 examples, 248 failures, 1 pending
Failed examples:
rspec ./spec/bundler/ui/shell_spec.rb:38 # Bundler::UI::Shell#error prints to stdout
rspec ./spec/cache/gems_spec.rb:184 # bundle cache when previously cached adds and removes when gems are updated
rspec './spec/cache/git_spec.rb[2:4]' # bundle cache with git tracks updates
rspec './spec/cache/git_spec.rb[3:4]' # bundle package with git tracks updates
rspec ./spec/cache/platform_spec.rb:45 # bundle cache with multiple platforms ensures that a successful bundle update does not delete gems for other platforms
rspec ./spec/commands/add_spec.rb:88 # bundle add shows error message when version is not formatted correctly
rspec ./spec/commands/add_spec.rb:93 # bundle add shows error message when gem cannot be found
rspec ./spec/commands/add_spec.rb:101 # bundle add shows error message when source cannot be reached
rspec ./spec/commands/binstubs_spec.rb:42 # bundle binstubs <gem> when the gem exists in the lockfile displays an error when used without any gem
rspec ./spec/commands/binstubs_spec.rb:122 # bundle binstubs <gem> when the gem doesn't exist displays an error with correct status
rspec ./spec/commands/check_spec.rb:52 # bundle check prints a generic error if the missing gems are unresolvable
rspec ./spec/commands/check_spec.rb:64 # bundle check prints a generic error if a Gemfile.lock does not exist and a toplevel dependency does not exist
rspec ./spec/commands/check_spec.rb:75 # bundle check prints a generic message if you changed your lockfile
rspec ./spec/commands/check_spec.rb:109 # bundle check ensures that gems are actually installed and not just cached
rspec ./spec/commands/check_spec.rb:189 # bundle check outputs an error when the default Gemfile is not found
rspec ./spec/commands/check_spec.rb:201 # bundle check should not crash when called multiple times on a new machine
rspec ./spec/commands/check_spec.rb:256 # bundle check --path vendor/bundle after installing gems in the default directory returns false
rspec ./spec/commands/check_spec.rb:284 # bundle check when locked shows what is missing with the current Gemfile if it is not satisfied
rspec ./spec/commands/clean_spec.rb:75 # bundle clean removes new version of gem if unused
rspec ./spec/commands/clean_spec.rb:185 # bundle clean removes old git gems
rspec ./spec/commands/clean_spec.rb:277 # bundle clean displays an error when used without --path
rspec ./spec/commands/clean_spec.rb:361 # bundle clean --clean should override the bundle setting on update
rspec ./spec/commands/clean_spec.rb:400 # bundle clean does not clean on bundle update with --path
rspec ./spec/commands/clean_spec.rb:418 # bundle clean does not clean on bundle update when using --system
rspec ./spec/commands/clean_spec.rb:464 # bundle clean when missing permissions returns a helpful error message
rspec ./spec/commands/exec_spec.rb:188 # bundle exec errors nicely when the argument doesn't exist
rspec ./spec/commands/exec_spec.rb:199 # bundle exec errors nicely when the argument is not executable
rspec ./spec/commands/exec_spec.rb:210 # bundle exec errors nicely when no arguments are passed
rspec './spec/commands/exec_spec.rb[1:25:4:1:1]' # bundle exec `load`ing a ruby file instead of `exec`ing the executable raises behaves like it runs like a normally executed executable
rspec ./spec/commands/help_spec.rb:80 # bundle help has helpful output when using --help flag for a non-existent command
rspec ./spec/commands/info_spec.rb:21 # bundle info info from specific gem in gemfile given a gem that is not installed prints missing gem error
rspec ./spec/commands/init_spec.rb:4 # bundle init generates a Gemfile
rspec ./spec/commands/init_spec.rb:9 # bundle init prints a message to the user
rspec ./spec/commands/init_spec.rb:25 # bundle init when a Gemfile already exists notifies the user that an existing Gemfile already exists
rspec ./spec/commands/init_spec.rb:34 # bundle init given --gemspec option should generate from an existing gemspec
rspec ./spec/commands/init_spec.rb:55 # bundle init given --gemspec option when gemspec file is invalid notifies the user that specification is invalid
rspec ./spec/commands/init_spec.rb:90 # bundle init when init_gems_rb setting is enabled when gems.rb already exists notifies the user that an existing gems.rb already exists
rspec ./spec/commands/inject_spec.rb:38 # bundle inject with injected gems already in the Gemfile doesn't add existing gems
rspec ./spec/commands/inject_spec.rb:45 # bundle inject incorrect arguments fails when more than 2 arguments are passed
rspec ./spec/commands/inject_spec.rb:102 # bundle inject when frozen doesn't allow Gemfile changes
rspec ./spec/commands/install_spec.rb:14 # bundle install with gem sources the simple case does not make a lockfile if the install fails
rspec ./spec/commands/install_spec.rb:154 # bundle install with gem sources the simple case activates gem correctly according to the resolved gems
rspec ./spec/commands/install_spec.rb:315 # bundle install with gem sources the simple case gracefully handles error when rubygems server is unavailable
rspec ./spec/commands/install_spec.rb:357 # bundle install with gem sources Ruby version in Gemfile.lock and using an unsupported Ruby version prints an error
rspec ./spec/commands/install_spec.rb:443 # bundle install with gem sources when requesting a quiet install via --quiet should be quiet
rspec ./spec/commands/install_spec.rb:463 # bundle install with gem sources when bundle path does not have write access should display a proper message to explain the problem
rspec ./spec/commands/install_spec.rb:480 # bundle install with gem sources when bundle install is executed with unencoded authentication should display a helpful messag explaining how to fix it
rspec ./spec/commands/lock_spec.rb:86 # bundle lock does not fetch remote specs when using the --local option
rspec ./spec/commands/lock_spec.rb:108 # bundle lock errors when updating a missing specific gems using --update
rspec ./spec/commands/lock_spec.rb:195 # bundle lock errors when removing all platforms
rspec ./spec/commands/newgem_spec.rb:786 # bundle gem uncommon gem names fails gracefully with a .
rspec ./spec/commands/newgem_spec.rb:791 # bundle gem uncommon gem names fails gracefully with a ^
rspec ./spec/commands/newgem_spec.rb:796 # bundle gem uncommon gem names fails gracefully with a space
rspec ./spec/commands/newgem_spec.rb:801 # bundle gem uncommon gem names fails gracefully when multiple names are passed
rspec ./spec/commands/newgem_spec.rb:820 # bundle gem #ensure_safe_gem_name with an existing const name should include "Invalid gem name gem"
rspec ./spec/commands/newgem_spec.rb:825 # bundle gem #ensure_safe_gem_name with an existing hyphenated const name should include "Invalid gem name gem-specification"
rspec ./spec/commands/newgem_spec.rb:889 # bundle gem on conflicts with a previously created file should fail gracefully
rspec ./spec/commands/newgem_spec.rb:900 # bundle gem on conflicts with a previously created directory should fail gracefully
rspec ./spec/commands/open_spec.rb:31 # bundle open complains if gem not in bundle
rspec ./spec/commands/open_spec.rb:49 # bundle open suggests alternatives for similar-sounding gems
rspec ./spec/commands/outdated_spec.rb:189 # bundle outdated with --local option uses local cache to return a list of outdated gems
rspec ./spec/commands/outdated_spec.rb:385 # bundle outdated with invalid gem name returns could not find gem name
rspec ./spec/commands/outdated_spec.rb:418 # bundle outdated after bundle install --deployment outputs a helpful message about being in deployment mode
rspec ./spec/commands/package_spec.rb:207 # bundle package with --frozen tries to install with frozen
rspec ./spec/commands/pristine_spec.rb:143 # bundle pristine when passing a list of gems to pristine raises when one of them is not in the lockfile
rspec ./spec/commands/show_spec.rb:47 # bundle show with a standard Gemfile complains if gem not in bundle
rspec ./spec/commands/show_spec.rb:151 # bundle show with an invalid regexp for gem name does not find the gem
rspec ./spec/commands/update_spec.rb:15 # bundle update with no arguments updates the entire bundle
rspec ./spec/commands/update_spec.rb:40 # bundle update when update_requires_all_flag is set errors when passed nothing
rspec ./spec/commands/update_spec.rb:46 # bundle update when update_requires_all_flag is set errors when passed --all and another option
rspec ./spec/commands/update_spec.rb:78 # bundle update with an unknown dependency should inform the user
rspec ./spec/commands/update_spec.rb:82 # bundle update with an unknown dependency should suggest alternatives
rspec ./spec/commands/update_spec.rb:101 # bundle update when a possible resolve requires an older version of a locked gem and only_update_to_newer_versions is set does not go to an older version
rspec ./spec/commands/update_spec.rb:178 # bundle update in a frozen bundle should fail loudly
rspec ./spec/commands/update_spec.rb:187 # bundle update in a frozen bundle should suggest different command when frozen is set globally
rspec ./spec/commands/update_spec.rb:196 # bundle update with --source option should not update gems not included in the source that happen to have the same name
rspec ./spec/commands/update_spec.rb:209 # bundle update with --source option should update gems not included in the source that happen to have the same name
rspec ./spec/commands/update_spec.rb:252 # bundle update when there is a child dependency that is also in the gemfile should not update the child dependencies of a gem that has the same name as the source
rspec ./spec/commands/update_spec.rb:285 # bundle update when there is a child dependency that appears elsewhere in the dependency graph should not update the child dependencies of a gem that has the same name as the source
rspec ./spec/commands/update_spec.rb:343 # bundle update without a Gemfile.lock should not explode
rspec ./spec/commands/update_spec.rb:372 # bundle update when a gem depends on a newer version of bundler should not explode
rspec ./spec/commands/update_spec.rb:377 # bundle update when a gem depends on a newer version of bundler should explain that bundler conflicted
rspec ./spec/commands/update_spec.rb:386 # bundle update shows the previous version of the gem when updated from rubygems source
rspec ./spec/commands/update_spec.rb:405 # bundle update shows error message when Gemfile.lock is not preset and gem is specified
rspec ./spec/commands/update_spec.rb:489 # bundle update --ruby when a different Ruby is being used than has been versioned shows a helpful error message
rspec ./spec/commands/update_spec.rb:568 # bundle update conservative patch and minor options patch preferred update all
rspec ./spec/commands/update_spec.rb:590 # bundle update conservative patch and minor options strict minor preferred
rspec ./spec/commands/update_spec.rb:687 # bundle update conservative error handling raises if too many flags are provided
rspec ./spec/install/allow_offline_install_spec.rb:17 # bundle install with :allow_offline_install with no cached data locally still fails when the network is down
rspec ./spec/install/allow_offline_install_spec.rb:28 # bundle install with :allow_offline_install with cached data locally will install from the compact index
rspec ./spec/install/allow_offline_install_spec.rb:71 # bundle install with :allow_offline_install with cached data locally will install from a cached git repo
rspec ./spec/install/bundler_spec.rb:32 # bundle install with bundler dependencies causes a conflict if explicitly requesting a different version
rspec ./spec/install/bundler_spec.rb:93 # bundle install with bundler dependencies causes a conflict if child dependencies conflict
rspec ./spec/install/bundler_spec.rb:114 # bundle install with bundler dependencies causes a conflict if a child dependency conflicts with the Gemfile
rspec ./spec/install/deploy_spec.rb:11 # install with --deployment or --frozen fails without a lockfile and says that --deployment requires a lock
rspec ./spec/install/deploy_spec.rb:16 # install with --deployment or --frozen fails without a lockfile and says that --frozen requires a lock
rspec ./spec/install/deploy_spec.rb:21 # install with --deployment or --frozen disallows --deployment --system
rspec ./spec/install/deploy_spec.rb:28 # install with --deployment or --frozen disallows --deployment --path --system
rspec ./spec/install/deploy_spec.rb:123 # install with --deployment or --frozen with an existing lockfile explodes with the --deployment flag if you make a change and don't check in the lockfile
rspec ./spec/install/deploy_spec.rb:138 # install with --deployment or --frozen with an existing lockfile can have --frozen set via an environment variable
rspec ./spec/install/deploy_spec.rb:168 # install with --deployment or --frozen with an existing lockfile explodes with the --frozen flag if you make a change and don't check in the lockfile
rspec ./spec/install/deploy_spec.rb:183 # install with --deployment or --frozen with an existing lockfile explodes if you remove a gem and don't check in the lockfile
rspec ./spec/install/deploy_spec.rb:196 # install with --deployment or --frozen with an existing lockfile explodes if you add a source
rspec ./spec/install/deploy_spec.rb:208 # install with --deployment or --frozen with an existing lockfile explodes if you unpin a source
rspec ./spec/install/deploy_spec.rb:228 # install with --deployment or --frozen with an existing lockfile explodes if you unpin a source, leaving it pinned somewhere else
rspec ./spec/install/failure_spec.rb:5 # bundle install installing a gem fails prints out why that gem was being installed
rspec ./spec/install/gemfile/gemspec_spec.rb:57 # bundle install from an existing gemspec should raise if there are no gemspecs available
rspec ./spec/install/gemfile/gemspec_spec.rb:67 # bundle install from an existing gemspec should raise if there are too many gemspecs available
rspec ./spec/install/gemfile/gemspec_spec.rb:259 # bundle install from an existing gemspec in deployment mode when the lockfile was not updated after a change to the gemspec's dependencies reports that installation failed
rspec ./spec/install/gemfile/git_spec.rb:779 # bundle install with git sources handles repos that have been force-pushed
rspec ./spec/install/gemfile/git_spec.rb:804 # bundle install with git sources ignores submodules if :submodule is not passed
rspec ./spec/install/gemfile/git_spec.rb:894 # bundle install with git sources prints a friendly error if a file blocks the git repo
rspec ./spec/install/gemfile/git_spec.rb:76 # bundle install with git sources when floating on master complains if pinned specs don't exist in the git repo
rspec ./spec/install/gemfile/git_spec.rb:86 # bundle install with git sources when floating on master complains with version and platform if pinned specs don't exist in the git repo
rspec ./spec/install/gemfile/git_spec.rb:102 # bundle install with git sources when floating on master complains with multiple versions and platforms if pinned specs don't exist in the git repo
rspec ./spec/install/gemfile/git_spec.rb:276 # bundle install with git sources when specifying a revision does not download random non-head refs
rspec ./spec/install/gemfile/git_spec.rb:492 # bundle install with git sources when specifying local override explodes if given path does not exist on install
rspec ./spec/install/gemfile/git_spec.rb:505 # bundle install with git sources when specifying local override explodes if branch is not given on install
rspec ./spec/install/gemfile/git_spec.rb:534 # bundle install with git sources when specifying local override explodes on different branches on install
rspec ./spec/install/gemfile/git_spec.rb:553 # bundle install with git sources when specifying local override explodes on invalid revision on install
rspec ./spec/install/gemfile/git_spec.rb:997 # bundle install with git sources bundle install after the remote has been updated gives a helpful error message when the remote ref no longer exists
rspec ./spec/install/gemfile/git_spec.rb:1072 # bundle install with git sources gem install hooks complains if the install hook fails
rspec ./spec/install/gemfile/git_spec.rb:1163 # bundle install with git sources with an extension does not prompt to gem install if extension fails
rspec ./spec/install/gemfile/git_spec.rb:1253 # bundle install with git sources without git installed prints a better error message
rspec ./spec/install/gemfile/git_spec.rb:1314 # bundle install with git sources git sources that include credentials that are username and password does not display the password
rspec ./spec/install/gemfile/git_spec.rb:1331 # bundle install with git sources git sources that include credentials that is an oauth token displays the oauth scheme but not the oauth token
rspec ./spec/install/gemfile/groups_spec.rb:207 # bundle install with groups installing --without with gems assigned to a single group errors out when passing a group to with and without
rspec ./spec/install/gemfile/groups_spec.rb:364 # bundle install with groups when locked and installed with --without does not hit the remote a second time
rspec ./spec/install/gemfile/path_spec.rb:49 # bundle install with explicit source paths expands paths raise error with not existing user's home dir
rspec ./spec/install/gemfile/path_spec.rb:144 # bundle install with explicit source paths warns on invalid specs
rspec ./spec/install/gemfile/path_spec.rb:241 # bundle install with explicit source paths raises if there are multiple gemspecs
rspec ./spec/install/gemfile/path_spec.rb:574 # bundle install with explicit source paths gem install hooks complains if the install hook fails
rspec ./spec/install/gemfile/ruby_spec.rb:99 # ruby requirement fails gracefully with malformed requirements
rspec ./spec/install/gemfile/sources_spec.rb:31 # bundle install with gems on multiple sources without source affinity with multiple toplevel sources warns about ambiguous gems, but installs anyway, prioritizing sources last to first
rspec ./spec/install/gemfile/sources_spec.rb:40 # bundle install with gems on multiple sources without source affinity with multiple toplevel sources errors when disable_multisource is set
rspec ./spec/install/gemfile/sources_spec.rb:61 # bundle install with gems on multiple sources without source affinity when different versions of the same gem are in multiple sources warns about ambiguous gems, but installs anyway
rspec ./spec/install/gemfile/sources_spec.rb:227 # bundle install with gems on multiple sources with source affinity with an indirect dependency when the indirect dependency is in a different source and in yet another source installs from the other source and warns about ambiguous gems
rspec ./spec/install/gemfile/sources_spec.rb:285 # bundle install with gems on multiple sources with source affinity with a gem that is only found in the wrong source does not install the gem
rspec ./spec/install/gemfile_spec.rb:59 # bundle install with deprecated features reports that lib is an invalid option
rspec ./spec/install/gems/compact_index_spec.rb:18 # compact index api should URI encode gem names
rspec ./spec/install/gems/compact_index_spec.rb:223 # compact index api times out when Bundler::Fetcher redirects too much
rspec ./spec/install/gems/compact_index_spec.rb:698 # compact index api fails gracefully when the source URI has an invalid scheme
rspec ./spec/install/gems/compact_index_spec.rb:245 # compact index api when --full-index is specified should use the modern index for update
rspec ./spec/install/gems/compact_index_spec.rb:518 # compact index api when using basic authentication strips http basic auth creds when warning about ambiguous sources
rspec ./spec/install/gems/compact_index_spec.rb:587 # compact index api when using basic authentication with authentication details in bundle config shows instructions if auth is not provided for the source
rspec ./spec/install/gems/compact_index_spec.rb:592 # compact index api when using basic authentication with authentication details in bundle config fails if authentication has already been provided, but failed
rspec ./spec/install/gems/compact_index_spec.rb:628 # compact index api when ruby is compiled without openssl explains what to do to get it
rspec ./spec/install/gems/compact_index_spec.rb:710 # compact index api checksum validation raises when the checksum does not match
rspec ./spec/install/gems/compact_index_spec.rb:730 # compact index api checksum validation raises when the checksum is the wrong length
rspec ./spec/install/gems/dependency_api_spec.rb:18 # gemcutter's dependency API should URI encode gem names
rspec ./spec/install/gems/dependency_api_spec.rb:213 # gemcutter's dependency API timeouts when Bundler::Fetcher redirects too much
rspec ./spec/install/gems/dependency_api_spec.rb:235 # gemcutter's dependency API when --full-index is specified should use the modern index for update
rspec ./spec/install/gems/dependency_api_spec.rb:507 # gemcutter's dependency API when using basic authentication strips http basic auth creds when warning about ambiguous sources
rspec ./spec/install/gems/dependency_api_spec.rb:576 # gemcutter's dependency API when using basic authentication with authentication details in bundle config shows instructions if auth is not provided for the source
rspec ./spec/install/gems/dependency_api_spec.rb:581 # gemcutter's dependency API when using basic authentication with authentication details in bundle config fails if authentication has already been provided, but failed
rspec ./spec/install/gems/dependency_api_spec.rb:617 # gemcutter's dependency API when ruby is compiled without openssl explains what to do to get it
rspec ./spec/install/gems/flex_spec.rb:194 # bundle flex_install when Gemfile conflicts with lockfile suggests bundle update when the Gemfile requires different versions than the lock
rspec ./spec/install/gems/flex_spec.rb:233 # bundle flex_install subtler cases does something
rspec ./spec/install/gems/flex_spec.rb:300 # bundle flex_install when a locked child dependency conflicts prints the correct error message
rspec './spec/install/gems/resolving_spec.rb[1:4:2:1:1]' # bundle install with install-time dependencies when a required ruby version allows no gems behaves like ruby version conflicts raises an error during resolution
rspec './spec/install/gems/resolving_spec.rb[1:4:2:2:1:1]' # bundle install with install-time dependencies when a required ruby version allows no gems with a < requirement behaves like ruby version conflicts raises an error during resolution
rspec './spec/install/gems/resolving_spec.rb[1:4:2:3:1:1]' # bundle install with install-time dependencies when a required ruby version allows no gems with a compound requirement behaves like ruby version conflicts raises an error during resolution
rspec ./spec/install/gems/resolving_spec.rb:178 # bundle install with install-time dependencies when a required rubygems version disallows a gem does not try to install those gems
rspec './spec/install/gems/standalone_spec.rb[1:3:1]' # bundle install --standalone with gem that has an invalid gemspec outputs a helpful error message
rspec './spec/install/gems/standalone_spec.rb[2:3:1]' # bundle install --standalone run in a subdirectory with gem that has an invalid gemspec outputs a helpful error message
rspec ./spec/install/gemspecs_spec.rb:75 # bundle install when ruby version is specified in gemspec and gemfile fails and complains about patchlevel on patchlevel mismatch
rspec ./spec/install/gemspecs_spec.rb:92 # bundle install when ruby version is specified in gemspec and gemfile fails and complains about version on version mismatch
rspec ./spec/install/git_spec.rb:17 # bundle install git sources displays the ref of the gem repository when using branch~num as a ref
rspec ./spec/install/path_spec.rb:38 # bundle install with --path disallows --path vendor/bundle --system
rspec ./spec/install/path_spec.rb:167 # bundle install to a file reports the file exists
rspec ./spec/install/post_bundle_message_spec.rb:100 # post bundle message for fresh bundle install with misspelled or non-existent gem name should report a helpful error message
rspec ./spec/install/post_bundle_message_spec.rb:109 # post bundle message for fresh bundle install with misspelled or non-existent gem name should report a helpful error message with reference to cache if available
rspec ./spec/install/post_bundle_message_spec.rb:162 # post bundle message for bundle update without any options
rspec ./spec/install/post_bundle_message_spec.rb:168 # post bundle message for bundle update with --without one group
rspec ./spec/install/post_bundle_message_spec.rb:175 # post bundle message for bundle update with --without two groups
rspec ./spec/install/post_bundle_message_spec.rb:182 # post bundle message for bundle update with --without more groups
rspec ./spec/install/security_policy_spec.rb:24 # policies with unsigned gems will fail when given invalid security policy
rspec ./spec/install/security_policy_spec.rb:29 # policies with unsigned gems will fail with High Security setting due to presence of unsigned gem
rspec ./spec/install/security_policy_spec.rb:35 # policies with unsigned gems will fail with Medium Security setting due to presence of unsigned gem
rspec ./spec/install/security_policy_spec.rb:55 # policies with signed gems and no CA will fail with High Security setting, gem is self-signed
rspec ./spec/install/security_policy_spec.rb:60 # policies with signed gems and no CA will fail with Medium Security setting, gem is self-signed
rspec ./spec/install/yanked_spec.rb:10 # when installing a bundle that includes yanked gems throws an error when the original gem version is yanked
rspec ./spec/install/yanked_spec.rb:33 # when installing a bundle that includes yanked gems throws the original error when only the Gemfile specifies a gem version that doesn't exist
rspec ./spec/install/yanked_spec.rb:45 # when using gem before installing does not suggest the author has yanked the gem
rspec ./spec/lock/lockfile_spec.rb:76 # the lockfile format does not update the lockfile's bundler version if nothing changed during bundle install
rspec ./spec/lock/lockfile_spec.rb:199 # the lockfile format errors if the current is a major version older than lockfile's bundler version
rspec ./spec/lock/lockfile_spec.rb:226 # the lockfile format shows a friendly error when running with a new bundler 2 lockfile
rspec ./spec/lock/lockfile_spec.rb:1112 # the lockfile format raises if two different versions are used
rspec ./spec/lock/lockfile_spec.rb:1123 # the lockfile format raises if two different sources are used
rspec ./spec/lock/lockfile_spec.rb:1260 # the lockfile format raises a helpful error message when the lockfile is missing deps
rspec ./spec/lock/lockfile_spec.rb:1351 # the lockfile format refuses to install if Gemfile.lock contains conflict markers
rspec ./spec/lock/lockfile_spec.rb:1304 # the lockfile format a line ending during updates preserves Gemfile.lock \n line endings
rspec ./spec/lock/lockfile_spec.rb:1312 # the lockfile format a line ending during updates preserves Gemfile.lock \n\r line endings
rspec ./spec/other/cli_dispatch_spec.rb:4 # bundle command names work when given fully
rspec ./spec/other/cli_dispatch_spec.rb:10 # bundle command names work when not ambiguous
rspec ./spec/other/cli_dispatch_spec.rb:16 # bundle command names print a friendly error when ambiguous
rspec ./spec/other/major_deprecation_spec.rb:100 # major deprecations Bundler bundle update warns when no options are given
rspec ./spec/other/platform_spec.rb:311 # bundle platform bundle install doesn't install when the ruby version doesn't match
rspec ./spec/other/platform_spec.rb:323 # bundle platform bundle install doesn't install when engine doesn't match
rspec ./spec/other/platform_spec.rb:335 # bundle platform bundle install doesn't install when engine version doesn't match
rspec ./spec/other/platform_spec.rb:349 # bundle platform bundle install doesn't install when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:401 # bundle platform bundle check fails when ruby version doesn't match
rspec ./spec/other/platform_spec.rb:418 # bundle platform bundle check fails when engine doesn't match
rspec ./spec/other/platform_spec.rb:454 # bundle platform bundle check fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:483 # bundle platform bundle update updates successfully when the ruby version matches
rspec ./spec/other/platform_spec.rb:499 # bundle platform bundle update updates fine with any engine
rspec ./spec/other/platform_spec.rb:517 # bundle platform bundle update fails when ruby version doesn't match
rspec ./spec/other/platform_spec.rb:533 # bundle platform bundle update fails when ruby engine doesn't match
rspec ./spec/other/platform_spec.rb:549 # bundle platform bundle update fails when ruby engine version doesn't match
rspec ./spec/other/platform_spec.rb:567 # bundle platform bundle update fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:617 # bundle platform bundle show fails if ruby version doesn't match
rspec ./spec/other/platform_spec.rb:629 # bundle platform bundle show fails if engine doesn't match
rspec ./spec/other/platform_spec.rb:641 # bundle platform bundle show fails if engine version doesn't match
rspec ./spec/other/platform_spec.rb:655 # bundle platform bundle show fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:704 # bundle platform bundle cache fails if the ruby version doesn't match
rspec ./spec/other/platform_spec.rb:715 # bundle platform bundle cache fails if the engine doesn't match
rspec ./spec/other/platform_spec.rb:726 # bundle platform bundle cache fails if the engine version doesn't match
rspec ./spec/other/platform_spec.rb:739 # bundle platform bundle cache fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:785 # bundle platform bundle pack fails if the ruby version doesn't match
rspec ./spec/other/platform_spec.rb:796 # bundle platform bundle pack fails if the engine doesn't match
rspec ./spec/other/platform_spec.rb:807 # bundle platform bundle pack fails if the engine version doesn't match
rspec ./spec/other/platform_spec.rb:820 # bundle platform bundle pack fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:957 # bundle platform bundle console fails when ruby version doesn't match
rspec ./spec/other/platform_spec.rb:971 # bundle platform bundle console fails when engine doesn't match
rspec ./spec/other/platform_spec.rb:985 # bundle platform bundle console fails when engine version doesn't match
rspec ./spec/other/platform_spec.rb:1001 # bundle platform bundle console fails when patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:1195 # bundle platform bundle outdated fails when the ruby version doesn't match
rspec ./spec/other/platform_spec.rb:1213 # bundle platform bundle outdated fails when the engine doesn't match
rspec ./spec/other/platform_spec.rb:1231 # bundle platform bundle outdated fails when the engine version doesn't match
rspec ./spec/other/platform_spec.rb:1251 # bundle platform bundle outdated fails when the patchlevel doesn't match
rspec ./spec/other/platform_spec.rb:1271 # bundle platform bundle outdated fails when the patchlevel is a fixnum
rspec ./spec/plugins/command_spec.rb:56 # command plugins raises error on redeclaration of command
rspec ./spec/plugins/install_spec.rb:11 # bundler plugin install shows proper message when gem in not found in the source
rspec ./spec/plugins/install_spec.rb:71 # bundler plugin install malformatted plugin fails when plugins.rb is missing
rspec ./spec/runtime/setup_spec.rb:1017 # Bundler.setup with a gemspec that requires other files error intelligently if the gemspec has a LoadError
rspec ./spec/runtime/with_clean_env_spec.rb:49 # Bundler.with_env helpers Bundler.original_env removes variables that bundler added
rspec './spec/update/gems/post_install_spec.rb[1:1:1:1]' # bundle update when listed gem is updated behaves like a post-install message outputter should display post-install messages for updated gems
rspec './spec/update/gems/post_install_spec.rb[1:1:1:2]' # bundle update when listed gem is updated behaves like a post-install message outputter should not display the post-install message for non-updated gems
rspec './spec/update/gems/post_install_spec.rb[1:1:2:1:1]' # bundle update when listed gem is updated behaves like a config observer when ignore post-install messages for gem is set doesn't display gem's post-install message
rspec './spec/update/gems/post_install_spec.rb[1:1:2:2:1]' # bundle update when listed gem is updated behaves like a config observer when ignore post-install messages for all gems doesn't display any post-install messages
rspec './spec/update/gems/post_install_spec.rb[1:2:1:1]' # bundle update when dependency triggers update behaves like a post-install message outputter should display post-install messages for updated gems
rspec './spec/update/gems/post_install_spec.rb[1:2:1:2]' # bundle update when dependency triggers update behaves like a post-install message outputter should not display the post-install message for non-updated gems
rspec './spec/update/gems/post_install_spec.rb[1:2:2:1:1]' # bundle update when dependency triggers update behaves like a config observer when ignore post-install messages for gem is set doesn't display gem's post-install message
rspec './spec/update/gems/post_install_spec.rb[1:2:2:2:1]' # bundle update when dependency triggers update behaves like a config observer when ignore post-install messages for all gems doesn't display any post-install messages
rspec ./spec/update/git_spec.rb:5 # bundle update git sources floats on a branch when :branch is used
rspec ./spec/update/git_spec.rb:97 # bundle update git sources fetches tags from the remote
rspec ./spec/update/git_spec.rb:180 # bundle update git sources errors with a message when the .git repo is gone
rspec ./spec/update/git_spec.rb:210 # bundle update git sources shows the previous version of the gem