9a2869ab46
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
10 lines
252 B
Ruby
10 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
|