Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appearance_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b72a2f979b24d442bd44c83b2999313bb29d45f (plain)
1
2
3
4
5
6
7
8
9
10
require 'rails_helper'

RSpec.describe Appearance, type: :model do
  subject { build(:appearance) }

  it { is_expected.to be_valid }

  it { is_expected.to validate_presence_of(:title) }
  it { is_expected.to validate_presence_of(:description) }
end