aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-01 00:49:20 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-01 00:49:20 +0000
commitd3c6187a4d968549b689757bb360e482bd881e07 (patch)
tree01df99796b8d5b478a1b6362e5bd5d939075b952
parent5db8f999431b22b31c4feecbabb498047bc3e6d2 (diff)
downloadruby-d3c6187a4d968549b689757bb360e482bd881e07.tar.gz
* test/rdoc/test_rdoc_options.rb: Windows drive letters are
case-insensitive. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/rdoc/test_rdoc_options.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b702f8e399..252d6d4a7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Dec 1 09:44:16 2012 Eric Hodel <drbrain@segment7.net>
+
+ * test/rdoc/test_rdoc_options.rb: Windows drive letters are
+ case-insensitive.
+
Sat Dec 1 09:42:13 2012 Eric Hodel <drbrain@segment7.net>
* lib/rubygems.rb: Search for gem deps file up the directory tree.
diff --git a/test/rdoc/test_rdoc_options.rb b/test/rdoc/test_rdoc_options.rb
index 440c77bec3..723a2dccfd 100644
--- a/test/rdoc/test_rdoc_options.rb
+++ b/test/rdoc/test_rdoc_options.rb
@@ -197,7 +197,7 @@ rdoc_include:
assert_equal 1, @options.static_path.length
- assert_match %r%^([A-Z]:)?/$%, @options.static_path.first
+ assert_match %r%^([A-Z]:)?/$%i, @options.static_path.first
end
def test_parse_coverage