mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
14 lines
282 B
Ruby
14 lines
282 B
Ruby
require 'spec_helper'
|
|
|
|
describe MapController do
|
|
it "loads all visible enterprises" do
|
|
Enterprise.should_receive(:visible)
|
|
get :index
|
|
end
|
|
|
|
it "loads active distributors" do
|
|
Enterprise.should_receive(:distributors_with_active_order_cycles)
|
|
get :index
|
|
end
|
|
end
|