Method: Expect4r::BaseLoginObject#dup

Defined in:
lib/misc/base.rb

#dupObject



194
195
196
197
198
199
200
# File 'lib/misc/base.rb', line 194

def dup
  if @pwd
    self.class.new @method, @host, @user, Expect4r.decipher(@pwd)
  else
    self.class.new @method, @host, @user
  end
end