Files
openfoodnetwork/spec/controllers/map_controller_spec.rb
2014-06-18 16:43:57 +10:00

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