diff options
author | chrismo <chrismo@clabs.org> | 2016-06-24 00:47:15 -0500 |
---|---|---|
committer | chrismo <chrismo@clabs.org> | 2016-07-08 19:35:57 -0500 |
commit | 3e56e8f02780f43dbf3a51b9cf456164cf3d9409 (patch) | |
tree | 0fda752e97af94a0470c61e6eaaa52d0e93fa10b /spec/commands/update_spec.rb | |
parent | 60f64fd47116880630fa1217bbdc127387664a9a (diff) | |
download | bundler-3e56e8f02780f43dbf3a51b9cf456164cf3d9409.tar.gz |
Add docs to GemVersionPromoter.
Also some pending specs cleanup. These may be added as new issues and
addressed later.
Diffstat (limited to 'spec/commands/update_spec.rb')
-rw-r--r-- | spec/commands/update_spec.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/spec/commands/update_spec.rb b/spec/commands/update_spec.rb index 64d43224e7..ce7d2612c1 100644 --- a/spec/commands/update_spec.rb +++ b/spec/commands/update_spec.rb @@ -473,7 +473,7 @@ describe "bundle update conservative" do should_be_installed "foo 1.4.5", "bar 2.1.1", "qux 1.0.1" end - it "warns on minor or major increment elsewhere" + it "warns on minor or major increment elsewhere" ## include in prior test end context "minor preferred" do @@ -483,7 +483,9 @@ describe "bundle update conservative" do should_be_installed "foo 1.5.1", "bar 3.0.0", "qux 1.0.0" end - it "warns on major increment elsewhere" + it "warns on major increment elsewhere" ## include in prior test + + it "warns when something unlocked doesn't update at all" end context "strict" do @@ -500,9 +502,9 @@ describe "bundle update conservative" do end end - context "dry run" do - it "should show what would happen" + context "other commands" do + it "Installer could support --dry-run flag for install and update" - it "should replace/be the same as what outdated shows" + it "outdated should conform its flags to the resolver flags" end end |