Add feature spec helper to select distributor and order cycle

This commit is contained in:
Rohan Mitchell
2014-01-08 11:31:44 +11:00
parent 2f98888acd
commit 458f91ef91
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
module OpenFoodNetwork
module DistributionHelper
def select_distribution(distributor, order_cycle)
create_enterprise_group_for distributor
visit root_path
click_link distributor.name
if page.has_select? 'order_order_cycle_id'
select_by_value order_cycle.id, from: 'order_order_cycle_id'
end
end
end
end