mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
193 B
Ruby
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
|