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:
Diffstat (limited to 'spec/ci/models/runner_project_spec.rb')
-rw-r--r--spec/ci/models/runner_project_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/ci/models/runner_project_spec.rb b/spec/ci/models/runner_project_spec.rb
new file mode 100644
index 00000000000..cbefb24705a
--- /dev/null
+++ b/spec/ci/models/runner_project_spec.rb
@@ -0,0 +1,16 @@
+# == Schema Information
+#
+# Table name: runner_projects
+#
+# id :integer not null, primary key
+# runner_id :integer not null
+# project_id :integer not null
+# created_at :datetime
+# updated_at :datetime
+#
+
+require 'spec_helper'
+
+describe RunnerProject do
+ pending "add some examples to (or delete) #{__FILE__}"
+end