UX: adds support for a color setting type (#9016)

This commit is contained in:
Joffrey JAFFEUX
2020-03-09 10:07:03 +01:00
committed by GitHub
parent 8612bfb152
commit 60b47d622e
9 changed files with 117 additions and 18 deletions

View File

@ -82,6 +82,12 @@ describe SiteSettings::TypeSupervisor do
it "'group_list' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:group_list]).to eq(20)
end
it "'tag_list' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:tag_list]).to eq(21)
end
it "'color' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:color]).to eq(22)
end
end
end