class Isomorfeus::Puppetmaster::Checkbox

Public Instance Methods

check() click to toggle source
# File lib/isomorfeus/puppetmaster/node/checkbox.rb, line 4
def check
  @driver.check(self)
end
checked?() click to toggle source
# File lib/isomorfeus/puppetmaster/node/checkbox.rb, line 8
def checked?
  !!self[:checked]
end
uncheck() click to toggle source
# File lib/isomorfeus/puppetmaster/node/checkbox.rb, line 12
def uncheck
  @driver.uncheck(self)
end