1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/spec/models/custom_emoji_category_spec.rb

10 lines
185 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe CustomEmojiCategory do
describe 'validations' do
it { is_expected.to validate_presence_of(:name) }
end
end