21 lines
412 B
Ruby
21 lines
412 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../setup"
|
|
module BSD::Control
|
|
class DisableFeatureTest < Test::Unit::TestCase
|
|
require "fileutils"
|
|
include FileUtils
|
|
|
|
def test_disable_pageexec_nonexistent_file
|
|
assert_raises(Errno::ENOENT) do
|
|
BSD::Control.feature(:pageexec).disable!(file)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def file
|
|
File.join(__dir__, "file")
|
|
end
|
|
end
|
|
end
|