lib/ree_lib/packages/ree_mapper/spec/ree_mapper/functions/build_mapper_strategy_spec.rb



# frozen_string_literal: true

RSpec.describe :build_mapper_strategy do
  link :build_mapper_strategy, from: :ree_mapper

  it {
    result = build_mapper_strategy(method: :cast, dto: Hash)
    
    expect(result).to be_a(ReeMapper::MapperStrategy)
  }
end