Class: FalseClass

Inherits:
Object show all
Defined in:
lib/appium_lib/rails/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

false is not duplicable:

false.duplicable? # => false
false.dup         # => TypeError: can't dup FalseClass


69
70
71
# File 'lib/appium_lib/rails/duplicable.rb', line 69

def duplicable?
  false
end