class Serverspec::Type::Zfs

Public Instance Methods

exists?() click to toggle source
# File lib/serverspec/type/zfs.rb, line 3
def exists?
  @runner.check_zfs_exists(@name)
end
has_property?(property) click to toggle source
# File lib/serverspec/type/zfs.rb, line 7
def has_property?(property)
  @runner.check_zfs_has_property(@name, property)
end
to_s() click to toggle source
# File lib/serverspec/type/zfs.rb, line 11
def to_s
  'ZFS'
end