Skip to content

Commit

Permalink
improved embedded mode test to display an actual region
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Aug 28, 2012
1 parent f70ba26 commit be5e503
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/selenium_tests/embedded_mode_test.py
@@ -1,11 +1,14 @@
import unittest
import time
from volvox_biodb_test import AbstractVolvoxBiodbTest

class EmbeddedModeTest( AbstractVolvoxBiodbTest, unittest.TestCase ):
def baseURL( self ):
if not self.base_url:
self.base_url = super( AbstractVolvoxBiodbTest, self ).baseURL() + '?nav=0&tracklist=0&overview=0&tracks=volvox_microarray.bw'
self.base_url = super( AbstractVolvoxBiodbTest, self ).baseURL() + '?nav=0&tracklist=0&overview=0&tracks=volvox_microarray.bw&loc=ctgA'
return self.base_url

def test_volvox( self ):
time.sleep(0.5)
self.assert_no_js_errors()
self.browser.close()

0 comments on commit be5e503

Please sign in to comment.