Files
Dalan/spec/factories/restriction.rb
2026-08-13 19:56:46 +03:30

9 lines
140 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :restriction do
scope { 'ip_subnet' }
value { '0.0.0.0/0' }
end
end