Skip to content

Commit 467a2d6

Browse files
committed
Fix tests that fail depending on user's local .gemrc file.
Without writing .gemrc, the gem source -a and -r don't work correctly. In particular, the presence of update_sources: true in .gemrc breaks one test, while writing the .gemrc fixes a previously skipped test.
1 parent 93a8a01 commit 467a2d6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

spec/integration_spec.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -152,18 +152,20 @@
152152
end
153153

154154
it "finds private gems when just the private source is configured", db_transaction: false do
155-
skip "this doesn't work because Rubygems sends /specs.4.8.gz instead of /private/specs.4.8.gz"
156155
env = { "HOME" => env_dir }
157-
expect(execute("gem", ["source", "-r", "https://rubygems.org/"], env: env)).to exit_success
158-
expect(execute("gem", ["source", "-a", host], env: env)).to exit_success
156+
File.write(File.join(env_dir, ".gemrc"), "---\nsources:\n - #{host}\n")
157+
159158
expect(execute("gem", ["search", "-ar", "speaker"], env: env)).
160159
to exit_success.and_output(/speaker \(0.1.0\)/)
161160
end
162161

163162
it "finds private gems when just the private source is configured with a trailing slash", db_transaction: false do
164163
env = { "HOME" => env_dir }
165-
expect(execute("gem", ["source", "-r", "https://rubygems.org/"], env: env)).to exit_success
166-
expect(execute("gem", ["source", "-a", "#{host}/"], env: env)).to exit_success
164+
165+
# The presence of `update_sources: true` in the .gemrc file breaks this test, and only this test.
166+
# Write a clean .gemrc file to avoid that. (This also makes the test much faster.)
167+
File.write(File.join(env_dir, ".gemrc"), "---\nsources:\n - #{host}/\n")
168+
167169
expect(execute("gem", ["search", "-ar", "speaker"], env: env)).
168170
to exit_success.and_output(/speaker \(0.1.0\)/)
169171
end

0 commit comments

Comments
 (0)