blob: c5658bd26e1e98be958fcef657ed9e4f9f736246 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|