From: "aidy.lewis@..." Date: 2007-07-11T22:20:38+09:00 Subject: module name == class name? Hi, I use the open-source automated functional test tool: Watir. In each class I hold methods relating to a specific HTML page. To avoid any name conflict, I think I should be wrapping each class within a module. Is it good form to have a module name that equals the class name. e.g. module Login class Login end end ? Thanks Aidy