rosa-build/spec/controllers/advisories_controller_spec.rb

10 lines
220 B
Ruby
Raw Normal View History

require 'spec_helper'
describe AdvisoriesController do
context 'for all' do
it "should be able to perform search action" do
get :search
response.should_not redirect_to(forbidden_path)
end
end
end