tests: Ditch the python test framework, use standard make check with a small
[gnome.seed] / tests / javascript / compare.js
1 #!/usr/bin/env 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);