Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed Jul 5, 2019
1 parent e6a03f1 commit 1bd9660
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/bundler/plugin/installer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
expect(spec.full_name).to eq "ga-plugin-1.0"
end

it "has expected full gem path" do
it "has expected full_gem_path" do
rev = revision_for(lib_path("ga-plugin"))
expect(result["ga-plugin"].full_gem_path).
to eq(Bundler::Plugin.root.join("bundler", "gems", "ga-plugin-#{rev[0..11]}").to_s)
Expand All @@ -89,7 +89,7 @@
expect(spec.full_name).to eq "ga-plugin-1.0"
end

it "has expected full gem path" do
it "has expected full_gem_path" do
rev = revision_for(lib_path("ga-plugin"))
expect(result["ga-plugin"].full_gem_path).
to eq(Bundler::Plugin.root.join("bundler", "gems", "ga-plugin-#{rev[0..11]}").to_s)
Expand All @@ -105,7 +105,7 @@
expect(result["re-plugin"]).to be_kind_of(Bundler::RemoteSpecification)
end

it "has expected full_gem)path" do
it "has expected full_gem_path" do
expect(result["re-plugin"].full_gem_path).
to eq(global_plugin_gem("re-plugin-1.0").to_s)
end
Expand All @@ -121,7 +121,7 @@
expect(result["ma-plugin"]).to be_kind_of(Bundler::RemoteSpecification)
end

it "has expected full_gem)path" do
it "has expected full_gem_path" do
expect(result["re-plugin"].full_gem_path).to eq(global_plugin_gem("re-plugin-1.0").to_s)
expect(result["ma-plugin"].full_gem_path).to eq(global_plugin_gem("ma-plugin-1.0").to_s)
end
Expand Down

0 comments on commit 1bd9660

Please sign in to comment.