stubbing away check_if_login_required

Don't know why, but this was needed to make the tests run in my env - should not be harmful for others
pull/6827/head
Gregor Schmidt 13 years ago
parent cb81df40e7
commit 35020f690c
  1. 3
      spec/controllers/meetings_controller_spec.rb

@ -4,6 +4,7 @@ describe MeetingsController do
before(:each) do
@p = mock_model(Project)
@controller.stub!(:authorize)
@controller.stub!(:check_if_login_required)
end
describe "GET" do
@ -105,4 +106,4 @@ describe MeetingsController do
end
end
end
end
end

Loading…
Cancel
Save