File: test_filter.ini

package info (click to toggle)
python-plaster-pastedeploy 0.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 316 kB
  • sloc: python: 639; makefile: 12
file content (26 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[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

[filter:filt]
use = egg:FakeApp#caps
method_to_call = lower

[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