diff options
author | Robert Speicher <rspeicher@gmail.com> | 2017-06-09 18:12:00 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2017-06-09 18:23:19 -0400 |
commit | f2dee8e8555409d3b1d333703581c6d62166cf83 (patch) | |
tree | 6096261b6d7aa2d15f1c51f8c3e671f19ff40782 /app/helpers/todos_helper.rb | |
parent | b16730fc8317b282d5dc86dbc8936c74303f5a36 (diff) | |
download | gitlab-ce-f2dee8e8555409d3b1d333703581c6d62166cf83.tar.gz |
Test todos_count_format helper at the correct level to improve speedrs-simplify-todo-count-spec
Instead of an integration test that creates 101 Todo records to test a
simple view helper, just unit test the helper.
Diffstat (limited to 'app/helpers/todos_helper.rb')
-rw-r--r-- | app/helpers/todos_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/todos_helper.rb b/app/helpers/todos_helper.rb index 19286fadb19..3d1b3a4711a 100644 --- a/app/helpers/todos_helper.rb +++ b/app/helpers/todos_helper.rb @@ -4,7 +4,7 @@ module TodosHelper end def todos_count_format(count) - count > 99 ? '99+' : count + count > 99 ? '99+' : count.to_s end def todos_done_count |