summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb')
-rw-r--r--spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb b/spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb
new file mode 100644
index 0000000000..9b37eaa43c
--- /dev/null
+++ b/spec/ruby/library/rubygems/gem/load_path_insert_index_spec.rb
@@ -0,0 +1,10 @@
+require_relative '../../../spec_helper'
+require 'rubygems'
+
+describe "Gem.load_path_insert_index" do
+ guard -> { RbConfig::TOPDIR } do
+ it "is set for an installed Ruby" do
+ Gem.load_path_insert_index.should be_kind_of Integer
+ end
+ end
+end