summaryrefslogtreecommitdiff
path: root/tests/sample_configs/test_filter.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sample_configs/test_filter.ini')
-rw-r--r--tests/sample_configs/test_filter.ini22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/sample_configs/test_filter.ini b/tests/sample_configs/test_filter.ini
new file mode 100644
index 0000000..bfad8dc
--- /dev/null
+++ b/tests/sample_configs/test_filter.ini
@@ -0,0 +1,22 @@
+[app:normal]
+use = egg:FakeApp#basic_app
+
+[pipeline:piped]
+pipeline = egg:FakeApp#caps normal
+
+[filter-app:filt]
+use = egg:FakeApp#caps
+method_to_call = lower
+next = normal
+
+[pipeline:piped2]
+pipeline = egg:FakeApp#caps2 normal
+
+[filter-app:filt2]
+use = egg:FakeApp#caps2
+method_to_call = lower
+next = normal
+
+[app:inv]
+use = egg:FakeApp#basic_app
+filter-with = egg:FakeApp#caps