Class: MarkdownExec::PathUtilsTest

Inherits:
Minitest::Test
  • Object
show all
Defined in:
lib/hash_delegator.rb

Instance Method Summary collapse

Instance Method Details

#test_absolute_path_returns_unchangedObject



7248
7249
7250
7251
7252
7253
7254
# File 'lib/hash_delegator.rb', line 7248

def test_absolute_path_returns_unchanged
  absolute_path = '/usr/local/bin'
  expression = 'path/to/*/directory'
  assert_equal absolute_path,
               PathUtils.resolve_path_or_substitute(absolute_path,
                                                    expression)
end

#test_empty_path_substitutionObject



7274
7275
7276
7277
7278
7279
7280
# File 'lib/hash_delegator.rb', line 7274

def test_empty_path_substitution
  empty_path = ''
  expression = 'path/to/*/directory'
  expected_output = 'path/to//directory'
  assert_equal expected_output,
               PathUtils.resolve_path_or_substitute(empty_path, expression)
end

#test_format_utf8_charactersObject

Test formatting a string containing UTF-8 characters



7283
7284
7285
7286
7287
# File 'lib/hash_delegator.rb', line 7283

def test_format_utf8_characters
  input = 'Unicode test: ā, ö, 💻, and 🚀 are fun!'
  expected = '# Unicode test: ā, ö, 💻, and 🚀 are fun!'
  assert_equal expected, BashCommentFormatter.format_comment(input)
end

#test_path_with_no_slash_substitutes_correctlyObject



7265
7266
7267
7268
7269
7270
7271
7272
# File 'lib/hash_delegator.rb', line 7265

def test_path_with_no_slash_substitutes_correctly
  relative_path = 'data'
  expression = 'path/to/*/directory'
  expected_output = 'path/to/data/directory'
  assert_equal expected_output,
               PathUtils.resolve_path_or_substitute(relative_path,
                                                    expression)
end

#test_relative_path_gets_substitutedObject



7256
7257
7258
7259
7260
7261
7262
7263
# File 'lib/hash_delegator.rb', line 7256

def test_relative_path_gets_substituted
  relative_path = 'my_folder'
  expression = 'path/to/*/directory'
  expected_output = 'path/to/my_folder/directory'
  assert_equal expected_output,
               PathUtils.resolve_path_or_substitute(relative_path,
                                                    expression)
end