Sha256: d3b282da4a51dccf1e8009d3a158df722a999f1e32275e1939940b7efa7a87e0
Contents?: true
Size: 314 Bytes
Versions: 6
Compression:
Stored size: 314 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :physical_package, class: "Physical::Package" do container { FactoryBot.build(:physical_box) } items { build_list(:physical_item, 2) } void_fill_density { Measured::Density(0.01, :g_ml) } initialize_with { new(**attributes) } end end
Version data entries
6 entries across 6 versions & 1 rubygems