You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- Feature: Nested Steps in I18n
-
- Background:
- Given a scenario with a step that looks like this in japanese:
- """gherkin
- 前提 two turtles
- """
- And a step definition that looks like this:
- """ruby
- # -*- coding: utf-8 -*-
- # frozen_string_literal: true
- 前提 /a turtle/ do
- log "turtle!"
- end
- """
-
- Scenario: Use #steps to call several steps at once
- Given a step definition that looks like this:
- """ruby
- # -*- coding: utf-8 -*-
- # frozen_string_literal: true
- 前提 /two turtles/ do
- steps %{
- 前提 a turtle
- かつ a turtle
- }
- end
- """
- When I run the feature with the progress formatter
- Then the output should contain:
- """
- turtle!
-
- turtle!
-
- """
|