summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-02-13 21:09:00 +1100
committerColby Swandale <colby@taplaboratories.com>2017-02-13 21:09:00 +1100
commit1f5e97cdfeee1ca1578b2b42dca41bfa10363be6 (patch)
tree3513fd24890ca2bfb03ee90c636e7a9b94747a4d
parent80c17a3f4daa562afad011b265ed575e235d11ce (diff)
downloadbundler-1f5e97cdfeee1ca1578b2b42dca41bfa10363be6.tar.gz
remove version strings in rdoc spec
-rw-r--r--spec/commands/info_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/commands/info_spec.rb b/spec/commands/info_spec.rb
index 76ff0db29d..b4ff08b277 100644
--- a/spec/commands/info_spec.rb
+++ b/spec/commands/info_spec.rb
@@ -28,8 +28,8 @@ RSpec.describe "bundle info" do
context "given a default gem shippped in ruby" do
it "prints information about the default gem" do
bundle "info rdoc"
- expect(out).to include("* rdoc (5.0.0)")
- expect(out).to match(%r{gems\/rdoc\-5\.0\.0})
+ expect(out).to include("* rdoc")
+ expect(out).to match(%r{gems\/rdoc\-})
end
end