Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
816fad35
Commit
816fad35
authored
Jan 25, 2017
by
Jarka Kadlecova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don’t count tasks that are not defined as list items correctly
parent
94715834
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
4 deletions
+27
-4
app/models/concerns/taskable.rb
app/models/concerns/taskable.rb
+4
-4
changelogs/unreleased/26068_tasklist_issue.yml
changelogs/unreleased/26068_tasklist_issue.yml
+4
-0
spec/support/taskable_shared_examples.rb
spec/support/taskable_shared_examples.rb
+19
-0
No files found.
app/models/concerns/taskable.rb
View file @
816fad35
...
...
@@ -11,10 +11,10 @@ module Taskable
INCOMPLETE
=
'incomplete'
.
freeze
ITEM_PATTERN
=
/
^
\s*(?:[-+*]|(?:\d+\.))
? # optional list prefix
\s
* # optional whitespace prefix
(\[\s\]|\[[xX]\]) # checkbox
(\s.+) # followed by whitespace and some text.
\s*(?:[-+*]|(?:\d+\.))
# list prefix required - task item has to be always in a list
\s
+ # whitespace prefix has to be always presented for a list item
(\[\s\]|\[[xX]\])
# checkbox
(\s.+)
# followed by whitespace and some text.
/x
def
self
.
get_tasks
(
content
)
...
...
changelogs/unreleased/26068_tasklist_issue.yml
0 → 100644
View file @
816fad35
---
title
:
Don’t count tasks that are not defined as list items correctly
merge_request
:
8526
author
:
spec/support/taskable_shared_examples.rb
View file @
816fad35
...
...
@@ -72,6 +72,25 @@ shared_examples 'a Taskable' do
end
end
describe
'with tasks that are not formatted correctly'
do
before
do
subject
.
description
=
<<-
EOT
.
strip_heredoc
[ ] task 1
[ ] task 2
- [ ]task 1
-[ ] task 2
EOT
end
it
'returns the correct task status'
do
expect
(
subject
.
task_status
).
to
match
(
'0 of'
)
expect
(
subject
.
task_status
).
to
match
(
'0 tasks completed'
)
expect
(
subject
.
task_status_short
).
to
match
(
'0/'
)
expect
(
subject
.
task_status_short
).
to
match
(
'0 task'
)
end
end
describe
'with a complete task'
do
before
do
subject
.
description
=
<<-
EOT
.
strip_heredoc
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment