Files
openfoodnetwork/spec/models/webhook_endpoint_spec.rb
2024-05-09 12:24:41 +10:00

10 lines
193 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe WebhookEndpoint, type: :model do
describe "validations" do
it { is_expected.to validate_presence_of(:url) }
end
end