OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/patches/cost_reports_controller_pat...

22 lines
511 B

require 'spec_helper'
describe 'CostReportsController', "rendering to xls" do
pending 'XlsExport: CostReports support not yet migrated to Rails 3'
it "should respond with the xls if requested in the index" do
pending
render :action => :index
response.should be_redirect
end
it "should not respond with the xls if requested in a detail view" do
pending
render :action => :show
response.should be_redirect
end
it "should generate xls from issues" do
pending
end
end