dyndnsd/spec/support/dummy_updater.rb

12 lines
148 B
Ruby

# frozen_string_literal: true
module Dyndnsd
module Updater
class Dummy
def update(zone)
# nothing
end
end
end
end