mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
The only major difference with the EE version is the change from a light and dark logo to only a header logo The dark logo wasn't used anyway, so it seemed to make sense to me to rename the field to the actual function of it
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
|