Method: RDI::Model::DependencyUserChoice#==
- Defined in:
- lib/rdi/Model/DependencyUserChoice.rb
#==(iOtherDUC) ⇒ Object
Do we equal another user choice ? Used by the regression
Parameters:
-
iOtherDUC (DependencyOtherChoice): The other one
Return:
-
Boolean: Do we equal another user choice ?
186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/rdi/Model/DependencyUserChoice.rb', line 186 def ==(iOtherDUC) return ( (@DepDesc == iOtherDUC.DepDesc) and (@Ignore == iOtherDUC.Ignore) and (@Locate == iOtherDUC.Locate) and (@IdxInstaller == iOtherDUC.IdxInstaller) and (@IdxDestination == iOtherDUC.IdxDestination) and (@ResolvedTesters == iOtherDUC.ResolvedTesters) and (@OtherLocation == iOtherDUC.OtherLocation) ) end |