summaryrefslogtreecommitdiff
path: root/tests/examplefiles/roboconf.instances
diff options
context:
space:
mode:
authorVincentZurczak <devnull@localhost>2015-02-20 14:10:08 +0100
committerVincentZurczak <devnull@localhost>2015-02-20 14:10:08 +0100
commit12a789a4608049824edbc66376c6366ccdc401e5 (patch)
treece05ad993b1f922c6255ce900e25de87d83d8ef1 /tests/examplefiles/roboconf.instances
parent2993eb7a2275211bd4e156a5013be2f3f501a5d3 (diff)
downloadpygments-12a789a4608049824edbc66376c6366ccdc401e5.tar.gz
Support Roboconf's DSL
Diffstat (limited to 'tests/examplefiles/roboconf.instances')
-rw-r--r--tests/examplefiles/roboconf.instances24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/examplefiles/roboconf.instances b/tests/examplefiles/roboconf.instances
new file mode 100644
index 00000000..c69a2ab0
--- /dev/null
+++ b/tests/examplefiles/roboconf.instances
@@ -0,0 +1,24 @@
+
+# Deal with imports
+import others.instances;
+
+instance of VM {
+ name: VM-mysql;
+ instance of mysql {
+ name: MySQL;
+ }
+}
+
+instance of VM {
+ name: VM ;
+ count: 5;
+
+ INSTANCE of tomcat {
+ name: Tomcat;
+
+ instance of my-war-1 {
+ name: my-war-1;
+ full-path: apps/my-war;
+ }
+ }
+}