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/lists.rb
parenta77aee9369596729c5aab2188fe114000872a05c (diff)
Add service to create a board list
Diffstat (limited to 'spec/factories/lists.rb')
-rw-r--r--spec/factories/lists.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/factories/lists.rb b/spec/factories/lists.rb
new file mode 100644
index 00000000000..4e493da41a0
--- /dev/null
+++ b/spec/factories/lists.rb
@@ -0,0 +1,7 @@
+FactoryGirl.define do
+ factory :list do
+ board
+ label
+ sequence(:position)
+ end
+end