~pierre-slamich/openfoodfacts/openfoodfacts-ubuntu-translations

« back to all changes in this revision

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

  • Committer: Lejeune Jimmy
  • Date: 2016-11-06 09:44:05 UTC
  • Revision ID: git-v1:3fa08b93bee10f6c14afafd0abeeb95df06b0761
add Travis (test empty)

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 Bankin 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!')))
 
 
b'\\ No newline at end of file'