File: issue0449.feature

package info (click to toggle)
behave 1.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,160 kB
  • sloc: python: 19,857; makefile: 137; sh: 18
file content (42 lines) | stat: -rw-r--r-- 1,274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@issue
@unicode
Feature: Issue #449 -- Unicode output problem when fails with Russion text

  . Either Exception text (as summary) or traceback python line shows
  . special characters correctly.

  Scenario:
    Given a new working directory
    And a file named "features/steps/problematic_steps.py" with:
      """
      # -*- coding: UTF-8 -*-
      # NOTE: Python2 requires encoding to decode special chars correctly.
      from behave import step
      from hamcrest.core import assert_that, equal_to

      @step("Russian text")
      def step_russian_text(stop):
          assert_that(False, equal_to(True), u"Всё очень плохо") # cyrillic
      """
    And a file named "behave.ini" with:
        """
        [behave]
        show_timings = false
        """
    And a file named "features/syndrome.feature" with:
      """
      Feature:
        Scenario:
          Given Russian text
      """
    When I run "behave -f plain features/syndrome.feature"
    Then it should fail with:
      """
      Scenario:
        Given Russian text ... failed
      Assertion Failed: Всё очень плохо
      """
    But the command output should not contain:
      """
      Assertion Failed: 'ascii' codec can't encode characters in position
      """