gonzedge/rambling-trie

View on GitHub
spec/support/helpers/one_line_heredoc.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Support
  module Helpers
    module OneLineHeredoc
      def one_line heredoc
        heredoc.strip.tr "\n", ' '
      end
    end
  end
end