aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ephy-shell-test.c
Commit message (Collapse)AuthorAgeFilesLines
* ephy-shell: remove the ephy_shell globalDiego Escalante Urrelo2012-12-111-2/+15
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683614
* Fix a ton of 'warning: function declaration isn’t a prototype'Xan Lopez2012-11-051-6/+6
| | | | | | | | | New warning flags have been added to gnome-common recently, and we were getting this a lot. Turns out in C 'foo ()' is not the same than 'foo (void)'; the first just means that no information is given about the number of arguments, the second means the function has exactly zero arguments, so add the 'void' thing all over the place when needed.
* Run all tests in test modeXan Lopez2012-10-081-1/+1
| | | | That's what it's for!
* tests: fix last shell testXan Lopez2012-09-031-5/+12
| | | | | | Unfortunately the state propagation of the overview loading needs the mainloop to run, since we use the load status signals from WebKit. Do so and update things for about:blank -> about:overview.
* tests: homepage is overview nowXan Lopez2012-09-031-1/+1
| | | | This fixes one test, there's another one broken in this file.
* tests: register the application explicitlyXan Lopez2012-09-031-2/+3
| | | | | | | | | | | | | This usually happens in _run, it seems, but the tests don't do that, so we need to call this manually. Otherwise the test will fail with: (/home/xan/git/epiphany/build/tests/test-ephy-session:9865): GLib-GIO-CRITICAL **: g_application_list_actions: assertion `application->priv->is_registered' failed No idea why this has started happening only now. https://bugzilla.gnome.org/show_bug.cgi?id=682653
* Initial WebKit2 portCarlos Garcia Campos2012-06-211-0/+4
| | | | It builds and basic functionality works.
* tests: add ephy-shell-testDiego Escalante Urrelo2012-06-151-0/+362
https://bugzilla.gnome.org/show_bug.cgi?id=673683