~mimecar/curso-ubuntu-phone-touch/trunk

« back to all changes in this revision

Viewing changes to HolaMundo/HolaMundo/tests/autopilot/HolaMundo/tests/test_main.py

  • Committer: Miguel Menéndez
  • Date: 2016-08-06 18:13:47 UTC
  • Revision ID: mimecar@innerzaurus.com-20160806181347-rjip9phmicolbfjt
Proyecto de introducción al curso de programación de Ubuntu Touch.

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 HolaMundo 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!')))