class NilDuck < NilObject def initialize super(Duck) end def name 'Demo Duck' end def status 'sleeping' end def color 'gray' end def migratory? true end end