summaryrefslogtreecommitdiffstats
path: root/filter/test.conf
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-04-17 13:49:21 +0200
committerPavel Machek <pavel@ucw.cz>2000-04-17 13:49:21 +0200
commit2bd2de0188f6a0c1c9482cfc15e35c2b1b81c81a (patch)
treeff7459ee6734c293a5ab98071b386030d6421dba /filter/test.conf
parent5a2455886db55ae2d1eb8934c7686b4f6586f83c (diff)
downloadbird-2bd2de0188f6a0c1c9482cfc15e35c2b1b81c81a.tar
bird-2bd2de0188f6a0c1c9482cfc15e35c2b1b81c81a.zip
pair ~ community list matching works.
Diffstat (limited to 'filter/test.conf')
-rw-r--r--filter/test.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/filter/test.conf b/filter/test.conf
index f266828..9e6e31d 100644
--- a/filter/test.conf
+++ b/filter/test.conf
@@ -52,8 +52,10 @@ clist l;
l = add( l, (1,2) );
l = add( l, (2,3) );
print "Community list (1,2) (2,3) ", l;
+ print "Should be true: ", (2,3) ~ l;
l = delete( l, (2,3) );
print "Community list (1,2) ", l;
+ print "Should be false: ", (2,3) ~ l;
}
function startup()