diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/test.pan | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/test.pan')
-rw-r--r-- | tests/examplefiles/test.pan | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/examplefiles/test.pan b/tests/examplefiles/test.pan deleted file mode 100644 index 56c8bd62..00000000 --- a/tests/examplefiles/test.pan +++ /dev/null @@ -1,54 +0,0 @@ -object template pantest; - -# Very simple pan test file -"/long/decimal" = 123; -"/long/octal" = 0755; -"/long/hexadecimal" = 0xFF; - -"/double/simple" = 0.01; -"/double/pi" = 3.14159; -"/double/exponent" = 1e-8; -"/double/scientific" = 1.3E10; - -"/string/single" = 'Faster, but escapes like \t, \n and \x3d don''t work, but '' should work.'; -"/string/double" = "Slower, but escapes like \t, \n and \x3d do work"; - -variable TEST = 2; - -"/x2" = to_string(TEST); -"/x2" ?= 'Default value'; - -"/x3" = 1 + 2 + value("/long/decimal"); - -"/x4" = undef; - -"/x5" = null; - -variable e ?= error("Test error message"); - -# include gmond config for services-monitoring -include { 'site/ganglia/gmond/services-monitoring' }; - -"/software/packages"=pkg_repl("httpd","2.2.3-43.sl5.3",PKG_ARCH_DEFAULT); -"/software/packages"=pkg_repl("php"); - -# Example function -function show_things_view_for_stuff = { - thing = ARGV[0]; - foreach( i; mything; STUFF ) { - if ( thing == mything ) { - return( true ); - } else { - return SELF; - }; - }; - false; -}; - -variable HERE = <<EOF; -; This example demonstrates an in-line heredoc style config file -[main] -awesome = true -EOF - -variable small = false;#This should be highlighted normally again. |