tests: make check should test against version in build tree, not installed
[gnome.seed] / tests / javascript / compare.js
1 #!../../src/seed
2
3 testsuite = imports.testsuite
4 Gtk = imports.gi.Gtk;
5
6 Gtk.init(Seed.argv);
7
8 var a = new Gtk.Button();
9 var b = new Gtk.Button();
10 var c = a;
11
12 testsuite.assert(a != b);
13 testsuite.assert(c == a);