HOME


Mini Shell 1.0
DIR: /snap/certbot/4482/usr/share/augeas/lenses/dist/tests/
Upload File :
Current File : //snap/certbot/4482/usr/share/augeas/lenses/dist/tests/test_util.aug
module Test_Util =

test Util.empty_c_style get "/* */\n" =
  {  }

test Util.comment_multiline get "/* comment */\n" =
  { "#mcomment"
    { "1" = "comment" }
  }

test Util.comment_multiline get "/*\ncomment\n*/\n" =
  { "#mcomment"
    { "1" = "comment" }
  }

test Util.comment_multiline get "/**
 * Multi line comment
 *
 */\n" =
  { "#mcomment"
    { "1" = "*" }
    { "2" = "* Multi line comment" }
    { "3" = "*" }
  }