added test configs
Joel Bernstein [Tue, 22 Aug 2006 19:35:10 +0000 (19:35 +0000)]
t/conf/conf.conf [new file with mode: 0644]
t/conf/conf.ini [new file with mode: 0644]
t/conf/conf.json [new file with mode: 0644]
t/conf/conf.pl [new file with mode: 0644]
t/conf/conf.xml [new file with mode: 0644]
t/conf/conf.yml [new file with mode: 0644]

diff --git a/t/conf/conf.conf b/t/conf/conf.conf
new file mode 100644 (file)
index 0000000..055e7a8
--- /dev/null
@@ -0,0 +1,7 @@
+name = TestApp\r
+<Component Controller::Foo>\r
+    foo bar\r
+</Component>\r
+<Model Model::Baz>\r
+    qux xyzzy\r
+</Model>\r
diff --git a/t/conf/conf.ini b/t/conf/conf.ini
new file mode 100644 (file)
index 0000000..a47b2d0
--- /dev/null
@@ -0,0 +1,7 @@
+name=TestApp\r
+    \r
+[Component Controller::Foo]\r
+foo=bar\r
+\r
+[Model Model::Baz]\r
+qux=xyzzy\r
diff --git a/t/conf/conf.json b/t/conf/conf.json
new file mode 100644 (file)
index 0000000..7f17fd3
--- /dev/null
@@ -0,0 +1,13 @@
+{\r
+    "name": "TestApp",\r
+    "Component": {\r
+        "Controller::Foo": {\r
+            "foo": "bar"\r
+        }\r
+    },\r
+    "Model": {\r
+        "Model::Baz": {\r
+            "qux": "xyzzy"\r
+        }\r
+    }\r
+}\r
diff --git a/t/conf/conf.pl b/t/conf/conf.pl
new file mode 100644 (file)
index 0000000..f78c973
--- /dev/null
@@ -0,0 +1,13 @@
+{\r
+    name => 'TestApp',\r
+       Component => {\r
+               'Controller::Foo' => {\r
+                       foo => 'bar'\r
+               }\r
+    },\r
+       Model => {\r
+               'Model::Baz' => {\r
+                       qux => 'xyzzy'\r
+               }\r
+       }\r
+}\r
diff --git a/t/conf/conf.xml b/t/conf/conf.xml
new file mode 100644 (file)
index 0000000..3754b15
--- /dev/null
@@ -0,0 +1,9 @@
+<config>\r
+    <name>TestApp</name>\r
+    <Component name="Controller::Foo">\r
+        <foo>bar</foo>\r
+    </Component>\r
+    <Model name="Model::Baz">\r
+        <qux>xyzzy</qux>\r
+    </Model>\r
+</config>\r
diff --git a/t/conf/conf.yml b/t/conf/conf.yml
new file mode 100644 (file)
index 0000000..29f4b73
--- /dev/null
@@ -0,0 +1,8 @@
+---\r
+name: TestApp\r
+Component:\r
+    Controller::Foo:\r
+        foo: bar\r
+Model:\r
+    Model::Baz:\r
+        qux: xyzzy\r