mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-29 06:26:07 +10:00
Branded appearance to CE Closes #11489 The difference with the EE version is only that there is no distinction between light and dark logos, though this wasn't used anyway. If this is fine, I'll create a MR on EE too. TODO: - [x] Copy docs - [x] Make new screenshots - [ ] Remove Custom Welcome message feature? @rymai: I was unsure what labels to add to ping you, so I just ping you like this 😉 /cc @DouweM See merge request !2927
11 lines
252 B
Ruby
11 lines
252 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Appearance, type: :model do
|
|
subject { create(:appearance) }
|
|
|
|
it { is_expected.to be_valid }
|
|
|
|
it { is_expected.to validate_presence_of(:title) }
|
|
it { is_expected.to validate_presence_of(:description) }
|
|
end
|