~carla-sella/music-app/show_albums_sheet

« back to all changes in this revision

Viewing changes to tests/autopilot/music_app/tests/__init__.py

  • Committer: Carla Sella
  • Date: 2013-09-14 15:02:05 UTC
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: carla.sella@gmail.com-20130914150205-wx4m3eq7hdldlni0
Migrated to emulator.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
from time import sleep
17
17
 
18
 
from music_app.emulators.main_window import MainWindow
19
 
 
 
18
from ubuntuuitoolkit import emulators as uitk
 
19
from music_app.emulators.emulators import MainView
20
20
 
21
21
class MusicTestCase(AutopilotTestCase):
22
22
 
59
59
        self.pointing_device.release()
60
60
 
61
61
    @property
62
 
    def main_window(self):
63
 
        return MainWindow(self.app)
 
62
    def main_view(self):
 
63
        return MainView(self.app)