UX: Add simple-list setting type (#9970)

This commit is contained in:
Penar Musaraj
2020-06-04 10:44:54 -04:00
committed by GitHub
parent 76af25f753
commit 2d880b42a3
11 changed files with 219 additions and 3 deletions

View File

@ -88,6 +88,9 @@ describe SiteSettings::TypeSupervisor do
it "'color' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:color]).to eq(22)
end
it "'simple_list' should be at the right position" do
expect(SiteSettings::TypeSupervisor.types[:simple_list]).to eq(23)
end
end
end