DEV: add site setting type group_list for a list of groups

Add a js test
This commit is contained in:
Neil Lalonde
2019-04-18 13:44:58 -04:00
parent 526e76ced2
commit 1ba72ccab8
7 changed files with 78 additions and 2 deletions

View File

@@ -72,10 +72,15 @@ describe SiteSettings::TypeSupervisor do
it "'uploaded_image_list' should be at 17th position" do
expect(SiteSettings::TypeSupervisor.types[:uploaded_image_list]).to eq(17)
end
it "'upload' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:upload]).to eq(18)
end
it "'group' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:group]).to eq(19)
end
it "'group_list' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:group_list]).to eq(20)
end
end
end