code layout clean up test_report_all_projects_csv_export of test/functional/time_entry_reports_controller_test.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7783 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
3da92d7da7
commit
b560927d45
|
@ -118,12 +118,14 @@ class TimeEntryReportsControllerTest < ActionController::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_report_all_projects_csv_export
|
def test_report_all_projects_csv_export
|
||||||
get :report, :columns => 'month', :from => "2007-01-01", :to => "2007-06-30", :criterias => ["project", "member", "activity"], :format => "csv"
|
get :report, :columns => 'month', :from => "2007-01-01", :to => "2007-06-30",
|
||||||
|
:criterias => ["project", "member", "activity"], :format => "csv"
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_equal 'text/csv', @response.content_type
|
assert_equal 'text/csv', @response.content_type
|
||||||
lines = @response.body.chomp.split("\n")
|
lines = @response.body.chomp.split("\n")
|
||||||
# Headers
|
# Headers
|
||||||
assert_equal 'Project,Member,Activity,2007-1,2007-2,2007-3,2007-4,2007-5,2007-6,Total', lines.first
|
assert_equal 'Project,Member,Activity,2007-1,2007-2,2007-3,2007-4,2007-5,2007-6,Total',
|
||||||
|
lines.first
|
||||||
# Total row
|
# Total row
|
||||||
assert_equal 'Total,"","","","",154.25,8.65,"","",162.90', lines.last
|
assert_equal 'Total,"","","","",154.25,8.65,"","",162.90', lines.last
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue