I'm using cucumber-watir-webdriver with for automation purposes. I have the following directory structure:
|features
-|feature1
--|1.feature
--|step_definitions
---|1.rb
-feature2
--|2.feature
--|step_definitions
---|2.rb
and so on. I need to know what is best practice to reduce redundancy in 1.rb and 2.rb.
feature1 and feature2 are completely different so I cannot combine both in one directory.
Also there is some part where feature line is same but execution in steps is different so it will create ambiguity if they are together.
I need to know if there is some part common in 1.rb and 2.rb where should I put it is there best practice to keep common step definitions.