aslakhellesoy-cucumber 0.1.16.4 → 0.1.16.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +75 -1
- data/Manifest.txt +58 -65
- data/examples/cs/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/Rakefile +3 -3
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -6
- data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/de/features/addition.feature +6 -6
- data/examples/i18n/de/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/en/features/addition.feature +6 -6
- data/examples/i18n/en/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/es/features/step_definitons/calculador_steps.rb +1 -1
- data/examples/i18n/et/features/liitmine.feature +7 -6
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +1 -1
- data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +1 -1
- data/examples/i18n/fi/features/yhteenlasku.feature +2 -2
- data/examples/i18n/fr/features/addition.feature +2 -2
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +1 -1
- data/examples/i18n/id/features/addition.feature +6 -6
- data/examples/i18n/id/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +1 -1
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +2 -3
- data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/lt/features/addition.feature +7 -6
- data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +7 -7
- data/examples/i18n/no/features/summering.feature +1 -0
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +1 -1
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/jbehave/README.textile +17 -0
- data/examples/jbehave/features/support/env.rb +7 -0
- data/examples/jbehave/features/trading.feature +24 -0
- data/examples/jbehave/pom.xml +48 -0
- data/examples/self_test/README.textile +4 -1
- data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
- data/examples/self_test/features/lots_of_undefined.feature +8 -0
- data/examples/self_test/features/outline_sample.feature +8 -5
- data/examples/self_test/features/sample.feature +5 -3
- data/examples/self_test/features/step_definitions/sample_steps.rb +15 -3
- data/features/cucumber_cli.feature +199 -97
- data/features/cucumber_cli_outlines.feature +46 -38
- data/features/report_called_undefined_steps.feature +31 -0
- data/features/step_definitions/cucumber_steps.rb +7 -3
- data/features/step_definitions/extra_steps.rb +1 -1
- data/features/support/env.rb +1 -1
- data/gem_tasks/features.rake +1 -1
- data/gem_tasks/flog.rake +1 -1
- data/lib/autotest/cucumber_mixin.rb +16 -23
- data/lib/cucumber/ast/comment.rb +26 -0
- data/lib/cucumber/ast/examples.rb +22 -0
- data/lib/cucumber/ast/feature.rb +60 -0
- data/lib/cucumber/ast/features.rb +39 -0
- data/lib/cucumber/ast/filter.rb +22 -0
- data/lib/cucumber/ast/outline_table.rb +49 -0
- data/lib/cucumber/ast/py_string.rb +52 -0
- data/lib/cucumber/ast/scenario.rb +91 -0
- data/lib/cucumber/ast/scenario_outline.rb +83 -0
- data/lib/cucumber/ast/step.rb +130 -0
- data/lib/cucumber/ast/table.rb +214 -0
- data/lib/cucumber/ast/tags.rb +33 -0
- data/lib/cucumber/ast/visitor.rb +93 -0
- data/lib/cucumber/ast.rb +27 -0
- data/lib/cucumber/broadcaster.rb +1 -6
- data/lib/cucumber/cli.rb +178 -128
- data/lib/cucumber/core_ext/exception.rb +41 -8
- data/lib/cucumber/core_ext/instance_exec.rb +54 -0
- data/lib/cucumber/core_ext/proc.rb +29 -65
- data/lib/cucumber/core_ext/string.rb +19 -0
- data/lib/cucumber/{formatters → formatter}/ansicolor.rb +11 -10
- data/lib/cucumber/formatter/console.rb +116 -0
- data/lib/cucumber/formatter/pretty.rb +158 -0
- data/lib/cucumber/formatter/profile.rb +77 -0
- data/lib/cucumber/formatter/progress.rb +68 -0
- data/lib/cucumber/formatter.rb +1 -0
- data/lib/cucumber/formatters/autotest_formatter.rb +0 -2
- data/lib/cucumber/formatters/html_formatter.rb +4 -3
- data/lib/cucumber/formatters/pretty_formatter.rb +1 -1
- data/lib/cucumber/formatters/unicode.rb +3 -3
- data/lib/cucumber/jbehave.rb +104 -0
- data/lib/cucumber/languages.yml +100 -73
- data/lib/cucumber/parser/basic.rb +0 -0
- data/lib/cucumber/parser/feature.rb +1694 -0
- data/lib/cucumber/parser/feature.tt +206 -0
- data/lib/cucumber/parser/file_parser.rb +50 -0
- data/lib/cucumber/parser/i18n.tt +26 -0
- data/lib/cucumber/parser/treetop_ext.rb +9 -0
- data/lib/cucumber/parser.rb +27 -0
- data/lib/cucumber/platform.rb +3 -17
- data/lib/cucumber/step_definition.rb +83 -0
- data/lib/cucumber/step_mother.rb +128 -72
- data/lib/cucumber/version.rb +1 -1
- data/lib/cucumber.rb +56 -9
- data/spec/cucumber/ast/feature_factory.rb +54 -0
- data/spec/cucumber/ast/feature_spec.rb +60 -0
- data/spec/cucumber/ast/py_string_spec.rb +40 -0
- data/spec/cucumber/ast/scenario_outline_spec.rb +64 -0
- data/spec/cucumber/ast/scenario_spec.rb +82 -0
- data/spec/cucumber/ast/step_spec.rb +45 -0
- data/spec/cucumber/ast/table_spec.rb +81 -0
- data/spec/cucumber/broadcaster_spec.rb +4 -17
- data/spec/cucumber/cli_spec.rb +43 -148
- data/spec/cucumber/core_ext/proc_spec.rb +27 -35
- data/spec/cucumber/core_ext/string_spec.rb +8 -0
- data/spec/cucumber/{formatters → formatter}/ansicolor_spec.rb +2 -2
- data/spec/cucumber/formatter/html/cucumber.css +37 -0
- data/spec/cucumber/formatter/html/cucumber.js +11 -0
- data/spec/cucumber/formatter/html/index.html +45 -0
- data/spec/cucumber/formatter/html/jquery-1.3.min.js +19 -0
- data/spec/cucumber/formatter/html/jquery.uitableedit.js +100 -0
- data/spec/cucumber/formatters/autotest_formatter_spec.rb +1 -0
- data/spec/cucumber/formatters/profile_formatter_spec.rb +17 -16
- data/spec/cucumber/parser/feature_parser_spec.rb +247 -0
- data/spec/cucumber/parser/table_parser_spec.rb +48 -0
- data/spec/cucumber/step_definition_spec.rb +62 -0
- data/spec/cucumber/step_mom_spec.rb +49 -0
- data/spec/cucumber/treetop_parser/empty_feature.feature +1 -1
- data/spec/cucumber/treetop_parser/spaces.feature +3 -1
- data/spec/cucumber/treetop_parser/with_comments.feature +1 -1
- data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
- data/spec/cucumber/world/pending_spec.rb +13 -12
- data/spec/spec_helper.rb +1 -1
- metadata +59 -67
- data/examples/calculator_ruby_features/Rakefile +0 -6
- data/examples/calculator_ruby_features/features/addition.rb +0 -39
- data/examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb +0 -43
- data/gem_tasks/treetop.rake +0 -41
- data/lib/cucumber/executor.rb +0 -205
- data/lib/cucumber/formatters/profile_formatter.rb +0 -92
- data/lib/cucumber/formatters/progress_formatter.rb +0 -61
- data/lib/cucumber/formatters.rb +0 -1
- data/lib/cucumber/model/table.rb +0 -32
- data/lib/cucumber/model.rb +0 -1
- data/lib/cucumber/step_methods.rb +0 -49
- data/lib/cucumber/tree/feature.rb +0 -105
- data/lib/cucumber/tree/features.rb +0 -21
- data/lib/cucumber/tree/given_scenario.rb +0 -13
- data/lib/cucumber/tree/scenario.rb +0 -240
- data/lib/cucumber/tree/step.rb +0 -173
- data/lib/cucumber/tree/table.rb +0 -26
- data/lib/cucumber/tree/top_down_visitor.rb +0 -23
- data/lib/cucumber/tree.rb +0 -16
- data/lib/cucumber/treetop_parser/feature.treetop.erb +0 -254
- data/lib/cucumber/treetop_parser/feature_ar.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_cy.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_da.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_de.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-lol.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-tx.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_es.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_et.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_fr.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_id.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_it.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ja.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ko.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_lt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_nl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_no.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_parser.rb +0 -36
- data/lib/cucumber/treetop_parser/feature_pl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_pt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro2.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ru.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_se.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_zh-CN.rb +0 -1951
- data/lib/cucumber/world/pending.rb +0 -22
- data/lib/cucumber/world.rb +0 -1
- data/setup.rb +0 -1585
- data/spec/cucumber/executor_spec.rb +0 -382
- data/spec/cucumber/formatters/html_formatter_spec.rb +0 -104
- data/spec/cucumber/formatters/pretty_formatter_spec.rb +0 -410
- data/spec/cucumber/formatters/progress_formatter_spec.rb +0 -81
- data/spec/cucumber/model/table_spec.rb +0 -32
- data/spec/cucumber/step_mother_spec.rb +0 -74
- data/spec/cucumber/tree/feature_spec.rb +0 -122
- data/spec/cucumber/tree/row_scenario_outline_spec.rb +0 -73
- data/spec/cucumber/tree/row_scenario_spec.rb +0 -55
- data/spec/cucumber/tree/row_step_outline_spec.rb +0 -38
- data/spec/cucumber/tree/scenario_outline_spec.rb +0 -50
- data/spec/cucumber/tree/scenario_spec.rb +0 -134
- data/spec/cucumber/tree/step_outline_spec.rb +0 -17
- data/spec/cucumber/tree/step_spec.rb +0 -59
- data/spec/cucumber/treetop_parser/feature_parser_spec.rb +0 -120
@@ -0,0 +1,104 @@
|
|
1
|
+
require 'java'
|
2
|
+
|
3
|
+
$:.unshift(ENV['HOME'] + '/.m2/repository/org/hamcrest/hamcrest-all/1.1')
|
4
|
+
$:.unshift(ENV['HOME'] + '/.m2/repository/junit/junit/4.4')
|
5
|
+
$:.unshift(ENV['HOME'] + '/.m2/repository/org/jbehave/jbehave-core/2.1')
|
6
|
+
|
7
|
+
require 'hamcrest-all-1.1.jar'
|
8
|
+
require 'junit-4.4.jar'
|
9
|
+
require 'jbehave-core-2.1.jar'
|
10
|
+
|
11
|
+
Exception::CUCUMBER_FILTER_PATTERNS.unshift(/^org\/jruby|^org\/jbehave|^org\/junit|^java\/|^sun\/|^\$_dot_dot_/)
|
12
|
+
|
13
|
+
module Cucumber
|
14
|
+
module JBehave
|
15
|
+
# Register an instance of org.jbehave.scenario.steps.Steps
|
16
|
+
def JBehave(jbehave_steps)
|
17
|
+
jbehave_steps.getSteps.each do |jbehave_candidate_step|
|
18
|
+
step_definitions << JBehaveStepDefinition.new(jbehave_steps, jbehave_candidate_step)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# Open up so we can get the pattern....
|
23
|
+
JBehaveCandidateStep = org.jbehave.scenario.steps.CandidateStep
|
24
|
+
class JBehaveCandidateStep
|
25
|
+
field_reader :pattern
|
26
|
+
end
|
27
|
+
|
28
|
+
# Adapter for JBehave org.jbehave.scenario.steps.CandidateStep
|
29
|
+
class JBehaveStepDefinition
|
30
|
+
def initialize(jbehave_steps, jbehave_candidate_step)
|
31
|
+
@jbehave_steps = jbehave_steps
|
32
|
+
@jbehave_candidate_step = jbehave_candidate_step
|
33
|
+
end
|
34
|
+
|
35
|
+
def match(step_name)
|
36
|
+
full_text = "Given #{step_name}" # JBehave doesn't distinguish GWT internally :-)
|
37
|
+
@jbehave_candidate_step.matches(full_text)
|
38
|
+
end
|
39
|
+
|
40
|
+
def file_colon_line
|
41
|
+
@jbehave_steps.java_class.name
|
42
|
+
end
|
43
|
+
|
44
|
+
def format_args(step_name, format)
|
45
|
+
java_pattern = @jbehave_candidate_step.pattern.pattern
|
46
|
+
regexp = Regexp.new(java_pattern)
|
47
|
+
step_name.gzub(regexp, format)
|
48
|
+
end
|
49
|
+
|
50
|
+
def matched_args(step_name)
|
51
|
+
java_pattern = @jbehave_candidate_step.pattern.pattern
|
52
|
+
regexp = Regexp.new(java_pattern)
|
53
|
+
step_name.match(regexp).captures
|
54
|
+
end
|
55
|
+
|
56
|
+
def execute(step_name, world, *args)
|
57
|
+
step = @jbehave_candidate_step.createFrom("Given #{step_name}")
|
58
|
+
result = step.perform
|
59
|
+
result.describeTo(JBehave::REPORTER)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
class JBehaveException < Exception
|
64
|
+
end
|
65
|
+
|
66
|
+
# Implements the org.jbehave.scenario.reporters.ScenarioReporter methods
|
67
|
+
class Reporter
|
68
|
+
def successful(step_text)
|
69
|
+
# noop
|
70
|
+
end
|
71
|
+
|
72
|
+
def failed(step, java_exception)
|
73
|
+
raise java_exception_to_ruby_exception(java_exception)
|
74
|
+
end
|
75
|
+
|
76
|
+
private
|
77
|
+
|
78
|
+
def java_exception_to_ruby_exception(java_exception)
|
79
|
+
# OK, this is a little funky - JRuby weirdness
|
80
|
+
ruby_exception = org.jruby.NativeException.new(JRuby.runtime, JBehaveException, java_exception)
|
81
|
+
ruby_exception.set_backtrace([]) # work around backtrace bug in jruby
|
82
|
+
|
83
|
+
exception = JBehaveException.new(java_exception.getMessage)
|
84
|
+
bt = ruby_exception.backtrace
|
85
|
+
Exception.cucumber_strip_backtrace!(bt, nil, nil)
|
86
|
+
exception.set_backtrace(bt)
|
87
|
+
exception
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
REPORTER = Reporter.new
|
92
|
+
|
93
|
+
def self.snippet_text(step_keyword, step_name)
|
94
|
+
camel = step_name.gsub(/(\s.)/) {$1.upcase.strip}
|
95
|
+
method = camel[0..0].downcase + camel[1..-1]
|
96
|
+
snippet = %{ @#{step_keyword}("#{step_name}")
|
97
|
+
public void #{method}() {
|
98
|
+
}}
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
self.extend(Cucumber::JBehave)
|
104
|
+
self.snippet_generator = Cucumber::JBehave
|
data/lib/cucumber/languages.yml
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# http://www.iana.org/assignments/language-subtag-registry
|
6
|
-
# http://ftp.ics.uci.edu/pub/ietf/http/related/iso639.txt (Use this I think)
|
1
|
+
# encoding: UTF-8
|
2
|
+
# We use the codes here (prefer 2 letters when possible)
|
3
|
+
# http://en.wikipedia.org/wiki/List_of_ISO_639-2_codes
|
4
|
+
#
|
7
5
|
"en":
|
6
|
+
name: English
|
7
|
+
native: English
|
8
|
+
encoding: UTF-8
|
8
9
|
feature: Feature
|
10
|
+
background: Background
|
9
11
|
scenario: Scenario
|
10
12
|
scenario_outline: Scenario Outline
|
11
13
|
examples: Examples
|
12
|
-
more_examples: More Examples
|
13
|
-
given_scenario: GivenScenario
|
14
14
|
given: Given
|
15
15
|
when: When
|
16
16
|
then: Then
|
@@ -20,265 +20,292 @@
|
|
20
20
|
# that is missing a keyword will expect the English word until the missing word(s)
|
21
21
|
# are added.
|
22
22
|
#
|
23
|
-
# Please keep the grammars in alphabetical order from here and down.
|
23
|
+
# Please keep the grammars in alphabetical order by name from here and down.
|
24
24
|
|
25
|
-
# Arabic
|
26
25
|
"ar":
|
26
|
+
name: Arabic
|
27
|
+
native: العربية
|
28
|
+
encoding: UTF-8
|
27
29
|
feature: خاصية
|
28
30
|
scenario: سيناريو
|
29
|
-
more_examples: امثلة اكثر
|
30
|
-
given_scenario: بفرض سيناريو معين
|
31
31
|
given: بفرض
|
32
32
|
when: متى
|
33
33
|
then: اذاً
|
34
34
|
and: و
|
35
35
|
but: لكن
|
36
|
-
# Welsh
|
37
36
|
"cy":
|
37
|
+
name: Welsh
|
38
|
+
native: Cymraeg
|
39
|
+
encoding: UTF-8
|
38
40
|
feature: Arwedd
|
39
41
|
scenario: Scenario
|
40
|
-
|
41
|
-
given_scenario: Anrhegedig scenario
|
42
|
+
examples: Enghreifftiau
|
42
43
|
given: anrhegedig a
|
43
44
|
when: Pryd
|
44
45
|
then: Yna
|
45
46
|
and: A
|
46
47
|
but: Ond
|
47
|
-
# Danish
|
48
48
|
"da":
|
49
|
+
name: Danish
|
50
|
+
native: dansk
|
51
|
+
encoding: UTF-8
|
49
52
|
feature: Egenskab
|
53
|
+
background: Baggrund
|
50
54
|
scenario: Scenarie
|
51
|
-
|
55
|
+
examples: Eksempler
|
52
56
|
given: Givet
|
53
57
|
when: Når
|
54
58
|
then: Så
|
55
59
|
and: Og
|
56
60
|
but: Men
|
57
|
-
# German
|
58
61
|
"de":
|
62
|
+
name: German
|
63
|
+
native: Deutsch
|
64
|
+
encoding: UTF-8
|
59
65
|
feature: Funktionalität
|
60
66
|
scenario: Szenario
|
61
67
|
scenario_outline: Szenariogrundriss
|
62
68
|
examples: Beispiele
|
63
|
-
more_examples: Mehr Beispiele
|
64
|
-
given_scenario: Gegebenes Szenario
|
65
69
|
given: Gegeben sei
|
66
70
|
when: Wenn
|
67
71
|
then: Dann
|
68
72
|
and: Und
|
69
73
|
but: Aber
|
70
|
-
# LOLCAT
|
71
74
|
"en-lol":
|
75
|
+
name: LOLCAT
|
76
|
+
native: LOLCAT
|
77
|
+
encoding: UTF-8
|
72
78
|
feature: OH HAI
|
79
|
+
background: B4
|
73
80
|
scenario: MISHUN
|
74
|
-
|
75
|
-
|
81
|
+
scenario_outline: MISHUN SRSLY
|
82
|
+
examples: EXAMPLZ
|
76
83
|
given: GIVN
|
77
84
|
when: WEN
|
78
85
|
then: DEN
|
79
86
|
and: AN
|
80
87
|
but: BUT
|
81
|
-
# Texan
|
82
88
|
"en-tx":
|
89
|
+
name: Texan
|
90
|
+
native: Texan
|
91
|
+
encoding: UTF-8
|
83
92
|
feature: Feature
|
84
93
|
scenario: Scenario
|
85
|
-
|
86
|
-
|
94
|
+
scenario_outline: Scenario Outline
|
95
|
+
examples: Examples
|
87
96
|
given: Given y'all
|
88
97
|
when: When y'all
|
89
98
|
then: Then y'all
|
90
99
|
and: And y'all
|
91
100
|
but: But y'all
|
92
|
-
# Spanish
|
93
101
|
"es":
|
102
|
+
name: Spanish
|
103
|
+
native: español
|
104
|
+
encoding: UTF-8
|
94
105
|
feature: Característica
|
95
106
|
scenario: Escenario
|
96
|
-
more_examples: Más ejemplos
|
97
|
-
given_scenario: DadoElEscenario
|
98
107
|
given: Dado
|
99
108
|
when: Cuando
|
100
109
|
then: Entonces
|
101
110
|
and: Y
|
102
111
|
but: Pero
|
103
|
-
# Estonian
|
104
112
|
"et":
|
113
|
+
name: Estonian
|
114
|
+
native: eesti keel
|
115
|
+
encoding: UTF-8
|
105
116
|
feature: Omadus
|
106
117
|
scenario: Stsenaarium
|
107
|
-
|
118
|
+
scenario_outline: Scenario Outline
|
119
|
+
examples: Examples
|
108
120
|
given: Eeldades
|
109
121
|
when: Kui
|
110
122
|
then: Siis
|
111
123
|
and: Ja
|
112
124
|
but: Kuid
|
113
|
-
# Finnish
|
114
125
|
"fi":
|
126
|
+
name: Finnish
|
127
|
+
native: suomi
|
128
|
+
encoding: UTF-8
|
115
129
|
feature: Ominaisuus
|
116
130
|
scenario: Tapaus
|
117
131
|
scenario_outline: Tapausaihio
|
118
132
|
examples: Tapaukset
|
119
|
-
more_examples: Lisätapaukset
|
120
|
-
given_scenario: Oletetaan tapaus
|
121
133
|
given: Oletetaan
|
122
134
|
when: Kun
|
123
135
|
then: Niin
|
124
136
|
and: Ja
|
125
137
|
but: Mutta
|
126
|
-
# French
|
127
138
|
"fr":
|
139
|
+
name: French
|
140
|
+
native: français
|
141
|
+
encoding: UTF-8
|
128
142
|
feature: Fonctionnalité
|
129
143
|
scenario: Scénario
|
130
|
-
|
131
|
-
|
144
|
+
scenario_outline: Scénario esquisse
|
145
|
+
examples: Exemples
|
132
146
|
given: Etant donné
|
133
147
|
when: Lorsque
|
134
148
|
then: Alors
|
135
149
|
and: Et
|
136
150
|
but: Mais
|
137
|
-
# Malay
|
138
151
|
"id":
|
152
|
+
name: Indonesian
|
153
|
+
native: Bahasa Indonesia
|
154
|
+
encoding: UTF-8
|
139
155
|
feature: Fitur
|
140
156
|
scenario: Skenario
|
141
|
-
|
142
|
-
|
157
|
+
scenario_outline: Skenario konsep
|
158
|
+
examples: Contoh
|
143
159
|
given: Dengan
|
144
160
|
when: Ketika
|
145
161
|
then: Maka
|
146
162
|
and: Dan
|
147
163
|
but: Tapi
|
148
|
-
# Italian
|
149
164
|
"it":
|
165
|
+
name: Italian
|
166
|
+
native: italiano
|
167
|
+
encoding: UTF-8
|
150
168
|
feature: Funzionalità
|
151
169
|
scenario: Scenario
|
152
170
|
more_examples: Più esempi
|
153
|
-
given_scenario: DatoLoScenario
|
154
171
|
given: Dato
|
155
172
|
when: Quando
|
156
173
|
then: Allora
|
157
174
|
and: E
|
158
175
|
but: Ma
|
159
|
-
# Japanese
|
160
176
|
"ja":
|
177
|
+
name: Japanese
|
178
|
+
native: 日本語
|
179
|
+
encoding: Shift_JIS
|
161
180
|
feature: フィーチャ
|
162
181
|
scenario: シナリオ
|
163
182
|
more_examples: 他のサンプル
|
164
|
-
given_scenario: 前提シナリオ
|
165
183
|
given: 前提
|
166
184
|
when: もし
|
167
185
|
then: ならば
|
168
186
|
and: かつ
|
169
187
|
but: しかし
|
170
|
-
# Lithuanian
|
171
188
|
"lt":
|
189
|
+
name: Lithuanian
|
190
|
+
native: lietuvių kalba
|
191
|
+
encoding: UTF-8
|
172
192
|
feature: Sąvybė
|
173
193
|
scenario: Scenarijus
|
174
|
-
|
175
|
-
given_scenario: DuotasScenarijus
|
194
|
+
examples: Pavyzdžių
|
176
195
|
given: Duota
|
177
196
|
when: Kai
|
178
197
|
then: Tada
|
179
198
|
and: Ir
|
180
199
|
but: Bet
|
181
|
-
# Dutch
|
182
200
|
"nl":
|
201
|
+
name: Dutch
|
202
|
+
native: Nederlands
|
203
|
+
encoding: UTF-8
|
183
204
|
feature: Functionaliteit
|
184
205
|
scenario: Scenario
|
185
|
-
more_examples: Meer voorbeelden
|
186
|
-
given_scenario: GegevenScenario
|
187
206
|
given: Gegeven
|
188
207
|
when: Als
|
189
208
|
then: Dan
|
190
209
|
and: En
|
191
210
|
but: Maar
|
192
|
-
# Norwegian
|
193
211
|
"no":
|
212
|
+
name: Norwegian
|
213
|
+
native: norsk
|
214
|
+
encoding: UTF-8
|
194
215
|
feature: Egenskap
|
216
|
+
background: Bakgrunn
|
195
217
|
scenario: Scenario
|
196
|
-
|
197
|
-
|
218
|
+
scenario_outline: Scenarioskisse
|
219
|
+
examples: Eksempler
|
198
220
|
given: Gitt
|
199
221
|
when: Når
|
200
222
|
then: Så
|
201
223
|
and: Og
|
202
224
|
but: Men
|
203
|
-
# Polish
|
204
225
|
"pl":
|
226
|
+
name: Polish
|
227
|
+
native: polski
|
228
|
+
encoding: UTF-8
|
205
229
|
feature: Właściwość
|
206
230
|
scenario: Scenariusz
|
207
|
-
more_examples: WięcejPrzykładów
|
208
|
-
given_scenario: DanyScenariusz
|
209
231
|
given: Dane
|
210
232
|
when: Jeżeli
|
211
233
|
then: Wtedy
|
212
234
|
and: Oraz
|
213
235
|
but: Ale
|
214
|
-
# Portuguese
|
215
236
|
"pt":
|
237
|
+
name: Portuguese
|
238
|
+
native: português
|
239
|
+
encoding: UTF-8
|
216
240
|
feature: Característica
|
217
241
|
scenario: Cenário
|
218
|
-
given_scenario: DadoOCenário
|
219
242
|
given: Dado
|
220
243
|
when: Quando
|
221
244
|
then: Então
|
222
245
|
and: E
|
223
246
|
but: Mas
|
224
|
-
# Romanian (without diacritics - the commonly used)
|
225
247
|
"ro":
|
248
|
+
name: Romanian
|
249
|
+
native: română
|
250
|
+
encoding: UTF-8
|
226
251
|
feature: Functionalitate
|
227
252
|
scenario: Scenariu
|
228
|
-
more_examples: Mai multe exemple
|
229
|
-
given_scenario: ScenariuDat
|
230
253
|
given: Daca
|
231
254
|
when: Cand
|
232
255
|
then: Atunci
|
233
256
|
and: Si
|
234
257
|
but: Dar
|
235
|
-
# Romanian (with diacritics - not commonly used)
|
236
258
|
"ro2":
|
259
|
+
name: Romanian (diacritical)
|
260
|
+
native: română (diacritical)
|
261
|
+
encoding: UTF-8
|
237
262
|
feature: Funcționalitate
|
238
263
|
scenario: Scenariu
|
239
|
-
more_examples: Mai multe exemple
|
240
|
-
given_scenario: ScenariuDat
|
241
264
|
given: Dacă
|
242
265
|
when: Când
|
243
266
|
then: Atunci
|
244
267
|
and: Și
|
245
268
|
but: Dar
|
246
|
-
# Russian
|
247
269
|
"ru":
|
270
|
+
name: Russian
|
271
|
+
native: русский язык
|
272
|
+
encoding: UTF-8
|
248
273
|
feature: Функционал
|
249
274
|
scenario: Сценарий
|
250
|
-
given_scenario: ДанныйСценарий
|
251
275
|
given: Сначала
|
252
276
|
when: Если
|
253
277
|
then: То
|
254
278
|
and: И
|
255
279
|
but: Но
|
256
|
-
# Swedish
|
257
280
|
"se":
|
281
|
+
name: Swedish
|
282
|
+
native: Svenska
|
283
|
+
encoding: UTF-8
|
258
284
|
feature: Egenskap
|
285
|
+
background: Bakgrund
|
259
286
|
scenario: Scenario
|
260
|
-
given_scenario: GivetScenario
|
261
287
|
given: Givet
|
262
288
|
when: När
|
263
289
|
then: Så
|
264
290
|
and: Och
|
265
291
|
but: Men
|
266
|
-
# Chinese simplified
|
267
292
|
"zh-CN":
|
293
|
+
name: Chinese simplified
|
294
|
+
native: 中文
|
295
|
+
encoding: UTF-8
|
268
296
|
feature: 功能
|
269
297
|
scenario: 场景
|
270
|
-
given_scenario: 引用场景
|
271
298
|
given: 假如
|
272
299
|
when: 当
|
273
300
|
then: 那么
|
274
301
|
and: 而且
|
275
302
|
but: 但是
|
276
|
-
# Korean
|
277
303
|
"ko":
|
304
|
+
name: Korean
|
305
|
+
native: 한국어
|
306
|
+
encoding: UTF-8
|
278
307
|
feature: 기능
|
279
308
|
scenario: 예
|
280
|
-
more_examples: 다른 예
|
281
|
-
given_scenario: 주어진 예
|
282
309
|
given: 조건
|
283
310
|
when: 만일
|
284
311
|
then: 그러면
|
File without changes
|