Mercurial > hg > soundsoftware-site
comparison test/unit/time_entry_query_test.rb @ 1526:404aa68d4227
Merge from live branch
author | Chris Cannam |
---|---|
date | Thu, 11 Sep 2014 12:46:20 +0100 |
parents | e248c7af89ec |
children |
comparison
equal
deleted
inserted
replaced
1493:a5f2bdf3b486 | 1526:404aa68d4227 |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2014 Jean-Philippe Lang | |
3 # | |
4 # This program is free software; you can redistribute it and/or | |
5 # modify it under the terms of the GNU General Public License | |
6 # as published by the Free Software Foundation; either version 2 | |
7 # of the License, or (at your option) any later version. | |
8 # | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 # | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 | |
18 require File.expand_path('../../test_helper', __FILE__) | |
19 | |
20 class TimeEntryQueryTest < ActiveSupport::TestCase | |
21 fixtures :projects, :users, :enumerations | |
22 | |
23 def test_activity_filter_should_consider_system_and_project_activities | |
24 TimeEntry.delete_all | |
25 system = TimeEntryActivity.create!(:name => 'Foo') | |
26 override = TimeEntryActivity.create!(:name => 'Foo', :parent_id => system.id, :project_id => 1) | |
27 other = TimeEntryActivity.create!(:name => 'Bar') | |
28 TimeEntry.generate!(:activity => system, :hours => 1.0) | |
29 TimeEntry.generate!(:activity => override, :hours => 2.0) | |
30 TimeEntry.generate!(:activity => other, :hours => 4.0) | |
31 | |
32 query = TimeEntryQuery.new(:name => '_') | |
33 query.add_filter('activity_id', '=', [system.id.to_s]) | |
34 assert_equal 3.0, query.results_scope.sum(:hours) | |
35 | |
36 query = TimeEntryQuery.new(:name => '_') | |
37 query.add_filter('activity_id', '!', [system.id.to_s]) | |
38 assert_equal 4.0, query.results_scope.sum(:hours) | |
39 end | |
40 end |