mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-19 00:27:25 +00:00
16 lines
344 B
Ruby
16 lines
344 B
Ruby
require 'spec_helper'
|
|
|
|
feature %q{
|
|
As a consumer
|
|
I want to see a list of producers
|
|
So that I can shop at hubs distributing their products
|
|
} do
|
|
include UIComponentHelper
|
|
let!(:producer) { create(:supplier_enterprise) }
|
|
|
|
it "shows all producers" do
|
|
visit producers_path
|
|
page.should have_content producer.name
|
|
end
|
|
end
|