bsdcontrol.rb/test/superuser/disable_feature_test.rb

20 lines
380 B
Ruby
Raw Normal View History

2024-03-09 23:40:42 +01:00
require_relative "../setup"
module BSD::Control
class DisableFeatureTest < Test::Unit::TestCase
require 'fileutils'
include FileUtils
def test_disable_mprotect_nonexistent_file
assert_raises Errno::ENOENT do
BSD::Control.feature(:mprotect).disable!(file)
end
end
private
def file
File.join(__dir__, "file")
end
end
end