Sha256: ea684dc867528148c912002354cfa7eed67db480760164d2a067f5775ccba67d
Contents?: true
Size: 962 Bytes
Versions: 20
Compression:
Stored size: 962 Bytes
Contents
module Ddr RSpec.describe Utils do describe "sanitize filename" do it "should return nil if not given an argument" do expect(Ddr::Utils.sanitize_filename(nil)).to be_nil end it "should raise an exception if given a non-String argument" do expect { Ddr::Utils.sanitize_filename(File.new) }.to raise_error(ArgumentError) end it "should raise an exception if given a string with a path separator" do expect { Ddr::Utils.sanitize_filename(File.join('my', 'file.txt')) }.to raise_error(ArgumentError) end it "should return the unaltered file name if given a sanitary file name" do expect(Ddr::Utils.sanitize_filename(File.join('my-file01.txt'))).to eq('my-file01.txt') end it "should a sanitized file name if given an unsanitary file name" do expect(Ddr::Utils.sanitize_filename(File.join('my##file01$.txt%%'))).to eq('my__file01_.txt__') end end end end
Version data entries
20 entries across 20 versions & 1 rubygems