Files
openfoodnetwork/spec/models/semantic_link_spec.rb
Maikel Linke dcb6f4676d Remove all unnecessary spec_helper require statements
The `.rspec` file is doing this for us.
2026-01-21 12:35:34 +11:00

7 lines
168 B
Ruby

# frozen_string_literal: true
RSpec.describe SemanticLink do
it { is_expected.to belong_to :subject }
it { is_expected.to validate_presence_of(:semantic_id) }
end