tests: make check should test against version in build tree, not installed
[gnome.seed] / tests / javascript / modules-noasserts.js
1 #!../../src/seed
2
3 // This test is merely to appease the coverage checker (calls init in each
4 // module); it will also catch unresolved symbol errors in the modules.
5
6 try
7 {
8         cairo = imports.cairo;
9         canvas = imports.canvas;
10         dbus = imports.dbus;
11         example = imports.example;
12         gettext = imports.gettext;
13         gtkbuilder = imports.gtkbuilder;
14         libxml = imports.libxml;
15         mpfr = imports.mpfr;
16         Multiprocessing = imports.Multiprocessing;
17         os = imports.os;
18         readline = imports.readline;
19         sandbox = imports.sandbox;
20         sqlite = imports.sqlite;
21 }
22 catch(e)
23 {
24
25 }