Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Nelson <stuartnelson3@gmail.com>2018-02-10 16:54:45 +0300
committerSean McGivern <sean@gitlab.com>2018-03-26 10:10:58 +0300
commit260282b0ac292f1ec7c6f2ed0eb23142175f898a (patch)
treef1c72c51ac250ef3d5348be59e20916ea0b8f4b7 /spec/workers
parent99fde7da158971b9dbed5dd06aadb9ef89339fab (diff)
Create cron issue due spec skeleton
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/issue_due_worker_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/workers/issue_due_worker_spec.rb b/spec/workers/issue_due_worker_spec.rb
new file mode 100644
index 00000000000..c85f7270a2b
--- /dev/null
+++ b/spec/workers/issue_due_worker_spec.rb
@@ -0,0 +1,10 @@
+require 'spec_helper'
+
+describe IssueDueWorker do
+ describe 'perform' do
+ let(:worker) { described_class.new }
+
+ it 'finds issues due on the day run' do
+ end
+ end
+end