#18 Add sql index for unpublished exercises

And remove spec for remove feature
This commit is contained in:
Maximilian Pass
2020-12-15 12:17:11 +01:00
committed by Felix Auringer
parent 2d2869765f
commit 028fc2989a
13 changed files with 148 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
FactoryBot.define do
factory :study_group, class: StudyGroup do
association :consumer
sequence :name do |n|
"TestGroup#{n}"
end
end
end