mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
236 B
Ruby
11 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe AdjustmentMetadata do
|
|
it "is valid when built from factory" do
|
|
adjustment_metadata = build(:adjustment_metadata)
|
|
expect(adjustment_metadata).to be_valid
|
|
end
|
|
end
|