mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
221 B
Ruby
10 lines
221 B
Ruby
require 'spec_helper'
|
|
|
|
describe GroupsController do
|
|
it "gets all visible groups" do
|
|
EnterpriseGroup.stub_chain :on_front_page, :by_position
|
|
EnterpriseGroup.should_receive :on_front_page
|
|
get :index
|
|
end
|
|
end
|