~verzegnassi-stefano/+junk/quickmemo-ui-and-database

« back to all changes in this revision

Viewing changes to app/tests/autopilot/quick-memo/tests/test_main.py

  • Committer: Stefano Verzegnassi
  • Date: 2015-08-04 18:40:51 UTC
  • Revision ID: stefano92.100@gmail.com-20150804184051-3903va3aog5nfifi
* Updated CMakeLists files (using the latest SDK template)
* Added a first skeleton for the C++ QML plugin
* Added SDK template tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
 
 
3
from autopilot.matchers import Eventually
 
4
from testtools.matchers import Equals
 
5
from quick-memo import tests
 
6
 
 
7
 
 
8
class MainViewTestCase(tests.BaseTestCase):
 
9
    """Tests for the mainview"""
 
10
 
 
11
    def setUp(self):
 
12
        super(MainViewTestCase, self).setUp()
 
13
 
 
14
    def test_click_button(self):
 
15
        # Find and click the button
 
16
        button = self.app.main_view.get_button()
 
17
        self.app.pointing_device.click_object(button)
 
18
 
 
19
        # Make an assertion about what should happen
 
20
        label = self.app.main_view.get_label()
 
21
        self.assertThat(label.text, Eventually(Equals('..world!')))