]> err.no Git - libchamplain/commitdiff
Call ensure_visible()
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Thu, 7 May 2009 21:17:13 +0000 (23:17 +0200)
committerEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Thu, 7 May 2009 21:17:13 +0000 (23:17 +0200)
The method is hard to test, but at least it is called in order to see if it will crash.

bindings/perl/Champlain/t/ChamplainView.t

index bef51e60f716c3ed8f7284513293cf62f26c0a99..20527d9cd9dd42abe68d829874c2e572af93d287 100644 (file)
@@ -97,6 +97,10 @@ sub test_generic {
        ok($view->get('zoom-on-double-click'), "set_zoom_on_double_click(TRUE)");
        $view->set_zoom_on_double_click(FALSE);
        ok(!$view->get('zoom-on-double-click'), "set_zoom_on_double_click(FALSE)");
+       
+       
+       # Call ensure_visible(), it's to test, but at least we test that it doesn't crash
+       $view->ensure_visible(10, 10, 30, 30, TRUE);
 }