Fix the test (#4502).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17942 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2019-03-13 15:50:24 +00:00
parent 019b640d81
commit d25f697d39

View File

@@ -659,11 +659,15 @@ class QueryTest < ActiveSupport::TestCase
end
def test_operator_tomorrow
issue = Issue.generate!(:due_date => User.current.today.tomorrow)
other_issues = []
other_issues << Issue.generate!(:due_date => User.current.today.yesterday)
other_issues << Issue.generate!(:due_date => User.current.today + 2)
query = IssueQuery.new(:project => Project.find(1), :name => '_')
query.add_filter('due_date', 'nd', [''])
issues = find_issues_with_query(query)
assert !issues.empty?
issues.each {|issue| assert_equal Date.today.tomorrow, issue.due_date}
assert_include issue, issues
other_issues.each {|i| assert_not_include i, issues }
end
def test_operator_date_periods