New: watirAll contenthive-129948hive-196917krhive-166405hive-180932steemphotographyhive-183959zzanhive-185836hive-150122hive-183397hive-144064hive-101145hive-188619uncommonlabhive-184714hive-145157hive-103599bitcoinhive-139150hive-193186hive-138689hive-193637hive-109690TrendingNewHotLikerssaashtechnology (27)in ruby • 7 years agoCoding Standards of Ruby WatirLOOPS: Never use unless with else. Rewrite these with the positive case first. BAD unless success? message = 'FAIL' else message = 'PASS' end GOOD if success? message = 'PASS'…