diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:34:57 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:34:57 +0000 |
commit | 2e0cbd2840ffb9fdb355ed0afd6b8684f2549bc7 (patch) | |
tree | bef4e4f9d68845c8294940cc697eb7280641d2a3 /test/functional/timelog_controller_test.rb | |
parent | 37d401ac58c36fc060ba795d1f3a3f36fa1dc4dc (diff) | |
download | redmine-2e0cbd2840ffb9fdb355ed0afd6b8684f2549bc7.tar.gz redmine-2e0cbd2840ffb9fdb355ed0afd6b8684f2549bc7.zip |
Added all list and boolean custom data fields to the Time Report. #4077
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2951 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/timelog_controller_test.rb')
-rw-r--r-- | test/functional/timelog_controller_test.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index 01ca505a0..d689e9e8a 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -238,12 +238,12 @@ class TimelogControllerTest < ActionController::TestCase end def test_report_custom_field_criteria - get :report, :project_id => 1, :criterias => ['project', 'cf_1'] + get :report, :project_id => 1, :criterias => ['project', 'cf_1', 'cf_7'] assert_response :success assert_template 'report' assert_not_nil assigns(:total_hours) assert_not_nil assigns(:criterias) - assert_equal 2, assigns(:criterias).size + assert_equal 3, assigns(:criterias).size assert_equal "162.90", "%.2f" % assigns(:total_hours) # Custom field column assert_tag :tag => 'th', :content => 'Database' @@ -252,6 +252,8 @@ class TimelogControllerTest < ActionController::TestCase :sibling => { :tag => 'td', :attributes => { :class => 'hours' }, :child => { :tag => 'span', :attributes => { :class => 'hours hours-int' }, :content => '1' }} + # Second custom field column + assert_tag :tag => 'th', :content => 'Billable' end def test_report_one_criteria_no_result |