class Mutant::Integration::Config

def merge(other)

def merge(other)
  self.class.new(
    name:      other.name || name,
    arguments: arguments + other.arguments
  )
end