1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 05:53:47 -05:00
2024-09-05 15:36:05 +00:00

11 lines
226 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Import do
describe 'Validations' do
it { is_expected.to validate_presence_of(:type) }
it { is_expected.to validate_presence_of(:data) }
end
end