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:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-07-28 00:46:03 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:57 +0300
commit247e11c94865b429c400fd9f0d1730c13b0b0c35 (patch)
tree7bbdddafb790d4ca85fb8156a04e932cec8eed99 /spec/factories/boards.rb
parenta77aee9369596729c5aab2188fe114000872a05c (diff)
Add service to create a board list
Diffstat (limited to 'spec/factories/boards.rb')
-rw-r--r--spec/factories/boards.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/factories/boards.rb b/spec/factories/boards.rb
new file mode 100644
index 00000000000..35c4a0b6f08
--- /dev/null
+++ b/spec/factories/boards.rb
@@ -0,0 +1,5 @@
+FactoryGirl.define do
+ factory :board do
+ project factory: :empty_project
+ end
+end