bsdcontrol.rb/test/superuser/disable_feature_test.rb

20 lines
381 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
2024-03-10 14:57:39 +01:00
assert_raises(Errno::ENOENT) do
2024-03-09 23:40:42 +01:00
BSD::Control.feature(:mprotect).disable!(file)
end
end
private
def file
File.join(__dir__, "file")
end
end
end