mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
238 B
Ruby
13 lines
238 B
Ruby
require 'spec_helper'
|
|
|
|
describe EnterprisesController do
|
|
it "displays suppliers" do
|
|
s = create(:supplier_enterprise)
|
|
d = create(:distributor_enterprise)
|
|
|
|
spree_get :suppliers
|
|
|
|
assigns(:suppliers).should == [s]
|
|
end
|
|
end
|