#

@k = FIX::parse(@text)
class FixFuzzSheet < FuzzSheet
    on %w[ FIX::Field.begin Str ] do
        self.value = $fuzz_strings.next
    end

    on %w[ #body Str.tag_value ] do
        self.value = $fuzz_integers.next.to_s
    end
end

#