diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2013-10-15 20:53:15 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2013-10-15 20:53:15 +0800 |
commit | 23ded8295d25dca40c615f5653ebe0b8c42889b4 (patch) | |
tree | 77e4962dfb788eac8e15b5901a07d87d74c8e28f | |
parent | f5b5b8668b1055315a075cc29dfeac1892ad88f8 (diff) | |
download | gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar.gz gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar.bz2 gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar.lz gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar.xz gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.tar.zst gsoc2013-epiphany-23ded8295d25dca40c615f5653ebe0b8c42889b4.zip |
test-ephy-web-view: fix test cases for autosearch
The dot doesn't need to be escaped. Add an extra test case for a
string that needs escaping.
-rw-r--r-- | tests/ephy-web-view-test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ephy-web-view-test.c b/tests/ephy-web-view-test.c index 1c1e1d878..139a8113e 100644 --- a/tests/ephy-web-view-test.c +++ b/tests/ephy-web-view-test.c @@ -286,7 +286,8 @@ static struct { { "http://google.com/this/is/a/path", "http://google.com/this/is/a/path" }, { "search", "http://duckduckgo.com/?q=search&t=epiphany" }, { "search.me", "http://search.me" }, - { "lala.lala", "http://duckduckgo.com/?q=lala%2Elala&t=epiphany" }, + { "lala.lala", "http://duckduckgo.com/?q=lala.lala&t=epiphany" }, + { "lala/lala", "http://duckduckgo.com/?q=lala%2Flala&t=epiphany" }, { "127.0.0.1", "http://127.0.0.1" }, { "http://127.0.0.1", "http://127.0.0.1" }, { "totalgarbage0xdeadbeef", "http://duckduckgo.com/?q=totalgarbage0xdeadbeef&t=epiphany" }, |