Browse Source

add note about more tests to write

tags/2.0.1
Jonathan Cobb 4 years ago
parent
commit
9a6842f6fd
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/test/java/bubble/abp/spec/BlockListTest.java

+ 2
- 1
src/test/java/bubble/abp/spec/BlockListTest.java View File

@@ -164,7 +164,8 @@ public class BlockListTest {
{"~foo.bar.com~[\"referer ne bar.com\"]", "bar.com", "bar.com", ALLOW},
{"~foo.bar.com~[\"referer ne bar.com\"]", "foo.bar.com", "bar.com", ALLOW},
{"~foo.bar.com~[\"referer ne bar.com\"]", "foo.bar.com", "foo.com", BLOCK},
{"~foo.bar.com~[\"referer ne bar.com\"]", "bar.com", "foo.com", ALLOW},
{"~foo.bar.com~[\"referer ne bar.com\"]", "bar.com", "foo.com", ALLOW}
// todo: add more tests for other operators, regex_find vs regex_exact, etc
};

@Test public void testConditionalMatches () throws Exception {


Loading…
Cancel
Save