bsdcontrol.rb/test/superuser/enable_feature_test.rb

26 lines
577 B
Ruby

# frozen_string_literal: true
require_relative "../setup"
module BSD::Control
class EnableFeatureTest < BSD::Control::Test
def test_enable_pageexec
assert_equal true, feature(:pageexec).enable!(file)
end
def test_enable_pageexec_mode_zero
chmod(0, file)
assert_equal true, feature(:pageexec).enable!(file)
end
def test_enable_pageexec_nonexistent_file
rm(file)
assert_raises(Errno::ENOENT) { feature(:pageexec).enable!(file) }
end
private
def feature(name)
BSD::Control.feature(name)
end
end
end