move Completions style into the themes
[conkeror/arlinius.git] / tests / simple / uri.js
blobe20234f3e09909af6b193fef2ad3963865daf0a4
2 require('walnut.js');
4 { let suite = {
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   };
15   walnut_run(suite);