debian-mirror-gitlab/spec/support/taskable_shared_examples.rb

60 lines
1.5 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
# Specs for task state functionality for issues and merge requests.
#
# Requires a context containing:
2015-09-11 14:41:01 +05:30
# subject { Issue or MergeRequest }
2015-04-26 12:48:37 +05:30
shared_examples 'a Taskable' do
2016-09-29 09:46:39 +05:30
describe 'with multiple tasks' do
before do
subject.description = <<-EOT.strip_heredoc
* [ ] Task 1
* [x] Task 2
* [x] Task 3
* [ ] Task 4
* [ ] Task 5
EOT
end
it 'returns the correct task status' do
expect(subject.task_status).to match('2 of')
expect(subject.task_status).to match('5 tasks completed')
end
describe '#tasks?' do
it 'returns true when object has tasks' do
expect(subject.tasks?).to eq true
end
it 'returns false when object has no tasks' do
subject.description = 'Now I have no tasks'
expect(subject.tasks?).to eq false
end
end
2015-04-26 12:48:37 +05:30
end
2016-09-29 09:46:39 +05:30
describe 'with an incomplete task' do
before do
subject.description = <<-EOT.strip_heredoc
* [ ] Task 1
EOT
end
it 'returns the correct task status' do
expect(subject.task_status).to match('0 of')
expect(subject.task_status).to match('1 task completed')
end
2015-04-26 12:48:37 +05:30
end
2016-09-29 09:46:39 +05:30
describe 'with a complete task' do
before do
subject.description = <<-EOT.strip_heredoc
* [x] Task 1
EOT
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
2016-09-29 09:46:39 +05:30
it 'returns the correct task status' do
expect(subject.task_status).to match('1 of')
expect(subject.task_status).to match('1 task completed')
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
end
end