# File lib/mspec/utils/options.rb, line 115
115:   def split(str, n)
116:     opt  = str[0, n]
117:     rest = str[n, str.size]
118:     arg  = rest == "" ? nil : rest
119:     return opt, arg, rest
120:   end