Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

showbox-public / mediainfo   ruby

Repository URL to install this package:

Version: 0.7.2.4.1 

/ test / mediainfo_string_test.rb

require "test_helper"
require "mediainfo_test_helper"

class MediainfoStringTest < ActiveSupport::TestCase
  test "escaping slashes" do
    assert_equal '"foo\\\bar"', 'foo\bar'.shell_escape_double_quotes
  end
  
  test "escaping quotes" do
    assert_equal '"foo\"bar"', 'foo"bar'.shell_escape_double_quotes
  end
  
  test "escaping ticks" do
    assert_equal '"foo\`bar"', 'foo`bar'.shell_escape_double_quotes
  end
  
  test "escaping dollar signs" do
    assert_equal '"foo\$bar"', 'foo$bar'.shell_escape_double_quotes
  end
end