Feature: Label APIs (#931)

This commit is contained in:
Sojan Jose
2020-06-07 11:17:13 +05:30
committed by GitHub
parent 915eefdc36
commit 3d84568a37
15 changed files with 196 additions and 37 deletions

8
spec/factories/labels.rb Normal file
View File

@@ -0,0 +1,8 @@
# frozen_string_literal: true
FactoryBot.define do
factory :label do
account
sequence(:title) { |n| "Label #{n}" }
end
end