Files
openfoodnetwork/spec/features/consumer/home_spec.rb
2014-04-18 16:35:06 +10:00

13 lines
307 B
Ruby

require 'spec_helper'
feature 'Home', js: true do
let(:distributor) { create(:distributor_enterprise) }
it "shows all hubs" do
distributor
visit "/"
page.should have_content distributor.name
find("hub a.row").click
page.should have_content "Shop at #{distributor.name}"
end
end