Change all occurrences of del.icio.us to delicious.com
[conkeror.git] / tests / simple / uri.js
blob3d24b3a9367f6b7b0a7d0d1dc24ade048a0ac907
2 require('walnut.js');
4 walnut_run({
5     test_make_uri_1: function () {
6         assert(make_uri("chrome://conkeror/content/conkeror.js"));
7     },
8     test_make_uri_2: function () {
9         assert(make_uri("http://www.example.com/"));
10     },
11     test_make_uri_3: function () {
12         assert_error(function () { make_uri("chrome://conkeror"); });
13     }
14 });