mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-30 12:19:38 +00:00
code clean up IssuesPdfHelperTest (#12510)
* remove extra empty lines * remove trailing white space * replace tab to two spaces git-svn-id: http://svn.redmine.org/redmine/trunk@17065 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2cf31f1248
commit
93d8204b8a
@ -18,18 +18,15 @@
|
||||
require File.expand_path('../../../../../../test_helper', __FILE__)
|
||||
|
||||
class IssuesPdfHelperTest < ActiveSupport::TestCase
|
||||
include Redmine::Export::PDF::IssuesPdfHelper
|
||||
include Redmine::Export::PDF::IssuesPdfHelper
|
||||
|
||||
def test_fetch_row_values_should_round_float_values
|
||||
query = IssueQuery.new(:project => Project.find(1), :name => '_')
|
||||
query.column_names = [:subject, :spent_hours]
|
||||
|
||||
|
||||
issue = Issue.find(2)
|
||||
TimeEntry.create(:spent_on => Date.today, :hours => 4.3432, :user => User.find(1), :project_id => 1, :issue => issue, :activity => TimeEntryActivity.first)
|
||||
|
||||
results = fetch_row_values(issue, query, 0)
|
||||
|
||||
assert_equal ["2", "Add ingredients categories", "4.34"], results
|
||||
end
|
||||
def test_fetch_row_values_should_round_float_values
|
||||
query = IssueQuery.new(:project => Project.find(1), :name => '_')
|
||||
query.column_names = [:subject, :spent_hours]
|
||||
issue = Issue.find(2)
|
||||
TimeEntry.create(:spent_on => Date.today, :hours => 4.3432, :user => User.find(1),
|
||||
:project_id => 1, :issue => issue, :activity => TimeEntryActivity.first)
|
||||
results = fetch_row_values(issue, query, 0)
|
||||
assert_equal ["2", "Add ingredients categories", "4.34"], results
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user