Sha256: 1a5413457fdf67f6377da33392681db1cd2eaaa9837ce00838f0482f4a32ceba
Contents?: true
Size: 675 Bytes
Versions: 1
Compression:
Stored size: 675 Bytes
Contents
#-- # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others. # All rights reserved. # See LICENSE.txt for permissions. #++ require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities') require 'rubygems/doc_manager' class TestGemDocManager < RubyGemTestCase def setup super @spec = quick_gem 'a' @manager = Gem::DocManager.new(@spec) end def test_uninstall_doc_unwritable orig_mode = File.stat(@spec.installation_path).mode File.chmod 0, @spec.installation_path assert_raises Gem::FilePermissionError do @manager.uninstall_doc end ensure File.chmod orig_mode, @spec.installation_path end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubygems-update-1.3.1 | test/test_gem_doc_manager.rb |