scinote-web/spec/factories/connections.rb
2019-06-10 12:24:04 +02:00

9 lines
147 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :connection do
from { create :my_module }
to { create :my_module }
end
end