summaryrefslogtreecommitdiffstats
path: root/test/unit/time_entry_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-02-24 12:28:44 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-02-24 12:28:44 +0000
commit458800c1d5755e068210259adf42de1d3c373f90 (patch)
tree1744812d66ce0ca87611bd33f714b2483cd6e9ee /test/unit/time_entry_test.rb
parent0a6a7f0ed7be045640f98cbb14a61588995670c1 (diff)
downloadredmine-458800c1d5755e068210259adf42de1d3c373f90.tar.gz
redmine-458800c1d5755e068210259adf42de1d3c373f90.zip
Time entry with 2 digits year should not validate (#3107).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11472 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/time_entry_test.rb')
-rw-r--r--test/unit/time_entry_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/time_entry_test.rb b/test/unit/time_entry_test.rb
index cb6d37d54..b14e799ce 100644
--- a/test/unit/time_entry_test.rb
+++ b/test/unit/time_entry_test.rb
@@ -110,6 +110,13 @@ class TimeEntryTest < ActiveSupport::TestCase
assert_equal 1, te.errors.count
end
+ def test_spent_on_with_2_digits_year_should_not_be_valid
+ entry = TimeEntry.new(:project => Project.find(1), :user => User.find(1), :activity => TimeEntryActivity.first, :hours => 1)
+ entry.spent_on = "09-02-04"
+ assert !entry.valid?
+ assert_include I18n.translate('activerecord.errors.messages.not_a_date'), entry.errors[:spent_on]
+ end
+
def test_set_project_if_nil
anon = User.anonymous
project = Project.find(1)