Skip to content

Some refactoring for to_slug_param

Compare
Choose a tag to compare
@the-teacher the-teacher released this 22 Mar 07:33
· 95 commits to master since this release

This release has minor changes for internal methods which provide processing of incoming test strings

was

    def has_section? section_name
        to_hash.key? section_name.to_s.to_slug_param(delimiter: '_')
    end

became

    def has_section? section_name
        to_hash.key? section_name.to_slug_param(sep: '_')
    end