Sha256: ef0b1115c5429028db1e027a3b3c81976cd08ed7c30f3708e51d6131bc48d20e
Contents?: true
Size: 989 Bytes
Versions: 1
Compression:
Stored size: 989 Bytes
Contents
# encoding: utf-8 require 'spec_helper' require 'open_classes/string/winpath_to_cygwinpath' describe String do context :winpath_to_cygwinpath do cases = [ { case_no: 1, case_title: 'file case', input: 'C:\hoge\hoge.txt', expected: '/cygdrive/c/hoge/hoge.txt' }, { case_no: 2, case_title: 'dir case', input: 'D:\hoge', expected: '/cygdrive/d/hoge' } ] cases.each do |c| it "|case_no=#{c[:case_no]}|case_title=#{c[:case_title]}" do begin case_before c # -- given -- # nothing # -- when -- actual = c[:input].winpath_to_cygwinpath # -- then -- expect(actual).to eq(c[:expected]) ensure case_after c end end def case_before(c) # implement each case before end def case_after(c) # implement each case after end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tbpgr_utils-0.0.151 | spec/open_classes/string/winpath_to_cygwinpath_spec.rb |