Displaying 1 result from an estimated 1 matches for "organizationscontroller".
2011 Jun 30
2
Testing RSpec views: the index action; is my methodology flawed?
This is my organizations_controller_spec.rb:
require ''spec_helper''
describe Superadmin::OrganizationsController do
describe "GET index" do
it "shows a list of all organizations" do
#pending "don''t know why this doesn''t work"
Organization.should_receive(:all)
end
end
end
============
This is my controllers/superadmin/organizations_co...