Sha256: 24c7a450f74adb94e44abb3e1affb4bc237b48919f6209e13c9a6d4112e6aa11
Contents?: true
Size: 413 Bytes
Versions: 6
Compression:
Stored size: 413 Bytes
Contents
require 'spec_helper' module Vim module Flavor describe StringExtension do describe '#zap' do it 'replace unsafe characters with "_"' do expect('fakeclip'.zap).to be == 'fakeclip' expect('kana/vim-altr'.zap).to be == 'kana_vim-altr' expect('git://example.com/foo.git'.zap).to be == 'git___example.com_foo.git' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems