summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Adams <james.adams@stfc.ac.uk>2014-02-03 12:26:12 +0100
committerJames Adams <james.adams@stfc.ac.uk>2014-02-03 12:26:12 +0100
commit5110bbdba3c24744a976fac56cb75204229f36f0 (patch)
treeb77d3271b4ce5bb5fadaaaf33965d4bd0b8c5f2e
parentba78b169cbcdd1d75ce6121ef8247f33a6bae2b1 (diff)
downloadpygments-5110bbdba3c24744a976fac56cb75204229f36f0.tar.gz
Expand test file for pan to include at least one of each variable type
-rw-r--r--tests/examplefiles/test.pan49
1 files changed, 45 insertions, 4 deletions
diff --git a/tests/examplefiles/test.pan b/tests/examplefiles/test.pan
index bb1b63e2..56c8bd62 100644
--- a/tests/examplefiles/test.pan
+++ b/tests/examplefiles/test.pan
@@ -1,13 +1,54 @@
object template pantest;
# Very simple pan test file
+"/long/decimal" = 123;
+"/long/octal" = 0755;
+"/long/hexadecimal" = 0xFF;
-"/x1" = 1;
+"/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" = TEST;
+"/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;
+};
-"/x3" = 1 + 2;
+variable HERE = <<EOF;
+; This example demonstrates an in-line heredoc style config file
+[main]
+awesome = true
+EOF
-variable e = error("Test error message");
+variable small = false;#This should be highlighted normally again.