earth 0.6.4 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/earth.gemspec +1 -1
- data/features/automobile_fuel.feature +144 -144
- data/features/automobile_make.feature +24 -24
- data/features/automobile_make_fleet_year.feature +34 -34
- data/features/automobile_make_model.feature +24 -24
- data/features/automobile_make_model_year.feature +34 -34
- data/features/automobile_make_model_year_variant.feature +46 -46
- data/features/automobile_make_year.feature +34 -34
- data/features/automobile_size_class.feature +59 -59
- data/features/automobile_size_class_year.feature +34 -34
- data/features/automobile_type_fuel_age.feature +55 -55
- data/features/automobile_type_fuel_control.feature +34 -34
- data/features/automobile_type_fuel_year.feature +124 -124
- data/features/automobile_type_fuel_year_age.feature +94 -94
- data/features/automobile_type_fuel_year_control.feature +74 -74
- data/features/automobile_type_year.feature +64 -64
- data/features/bus_class.feature +39 -39
- data/features/bus_fuel.feature +114 -114
- data/features/carrier.feature +64 -64
- data/features/carrier_mode.feature +64 -64
- data/features/computation_carrier.feature +14 -14
- data/features/computation_carrier_instance_class.feature +24 -24
- data/features/egrid_region.feature +20 -20
- data/features/egrid_subregion.feature +134 -134
- data/features/fuel_year.feature +54 -54
- data/features/greenhouse_gas.feature +44 -44
- data/features/rail_class.feature +64 -64
- data/features/shipment_mode.feature +34 -34
- data/lib/earth/air.rb +1 -0
- data/lib/earth/air/data_miner.rb +1 -0
- data/lib/earth/air/flight_distance_class.rb +10 -0
- data/lib/earth/air/flight_distance_class/data_miner.rb +18 -2
- data/lib/earth/air/flight_distance_class_seat_class.rb +10 -0
- data/lib/earth/air/flight_distance_class_seat_class/data_miner.rb +13 -0
- data/lib/earth/air/flight_seat_class.rb +6 -5
- data/lib/earth/air/flight_seat_class/data_miner.rb +18 -6
- data/lib/earth/version.rb +1 -1
- data/spec/earth_spec.rb +2 -2
- metadata +187 -173
@@ -1,34 +1,34 @@
|
|
1
|
-
Feature: Data import for AutomobileTypeFuelControl
|
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
|
-
|
1
|
+
# Feature: Data import for AutomobileTypeFuelControl
|
2
|
+
# As a data user
|
3
|
+
# I want to import AutomobileTypeFuelControl data
|
4
|
+
# So that I can perform type fuel control-based calculations
|
5
|
+
#
|
6
|
+
# Scenario: Successfully verifying that type name, fuel common name, and control name are not missing
|
7
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_good"
|
8
|
+
# When a data import verifies "Type name, fuel common name, and control name should never be missing"
|
9
|
+
# Then the verification should be successful
|
10
|
+
#
|
11
|
+
# Scenario: Successfully verifying that emission factors are greater than zero
|
12
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_good"
|
13
|
+
# When a data import verifies "Emission factors should be greater than zero"
|
14
|
+
# Then the verification should be successful
|
15
|
+
#
|
16
|
+
# Scenario: Successfully verifying that emission factors units are kilograms per kilometre
|
17
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_good"
|
18
|
+
# When a data import verifies "Emission factor units should be kilograms per kilometre"
|
19
|
+
# Then the verification should be successful
|
20
|
+
#
|
21
|
+
# Scenario: Failing to verify that type name, fuel common name, and control name are not missing
|
22
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_bad"
|
23
|
+
# When a data import verifies "Type name, fuel common name, and control name should never be missing"
|
24
|
+
# Then the verification should not be successful
|
25
|
+
#
|
26
|
+
# Scenario: Failing to verify that emission factors are greater than zero
|
27
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_bad"
|
28
|
+
# When a data import verifies "Emission factors should be greater than zero"
|
29
|
+
# Then the verification should not be successful
|
30
|
+
#
|
31
|
+
# Scenario: Failing to verify that emission factors units are kilograms per kilometre
|
32
|
+
# Given a "AutomobileTypeFuelControl" data import fetches results listed in "automobile_type_fuel_control_bad"
|
33
|
+
# When a data import verifies "Emission factor units should be kilograms per kilometre"
|
34
|
+
# Then the verification should not be successful
|
@@ -1,124 +1,124 @@
|
|
1
|
-
Feature: Data import for AutomobileTypeFuelYear
|
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
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
1
|
+
# Feature: Data import for AutomobileTypeFuelYear
|
2
|
+
# As a data user
|
3
|
+
# I want to import AutomobileTypeFuelYear data
|
4
|
+
# So that I can perform type fuel year-based calculations
|
5
|
+
#
|
6
|
+
# Scenario: Successfully verifying that type name is not missing
|
7
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
8
|
+
# When a data import verifies "Type name should never be missing"
|
9
|
+
# Then the verification should be successful
|
10
|
+
#
|
11
|
+
# Scenario: Successfully verifying that fuel common name is not missing
|
12
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
13
|
+
# When a data import verifies "Fuel common name should never be missing"
|
14
|
+
# Then the verification should be successful
|
15
|
+
#
|
16
|
+
# Scenario: Successfully verifying that type year name is not missing
|
17
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
18
|
+
# When a data import verifies "Type year name should never be missing"
|
19
|
+
# Then the verification should be successful
|
20
|
+
#
|
21
|
+
# Scenario: Successfully verifying that year is from 1990 to 2008
|
22
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
23
|
+
# When a data import verifies "Year should be from 1990 to 2008"
|
24
|
+
# Then the verification should be successful
|
25
|
+
#
|
26
|
+
# Scenario: Successfully verifying that total travel is greater than zero
|
27
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
28
|
+
# When a data import verifies "Total travel should be greater than zero"
|
29
|
+
# Then the verification should be successful
|
30
|
+
#
|
31
|
+
# Scenario: Successfully verifying that fuel consumption is greater than zero
|
32
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
33
|
+
# When a data import verifies "Fuel consumption should be greater than zero"
|
34
|
+
# Then the verification should be successful
|
35
|
+
#
|
36
|
+
# Scenario: Successfully verifying that ch4 emission factor is greater than zero
|
37
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
38
|
+
# When a data import verifies "Ch4 emission factor should be greater than zero"
|
39
|
+
# Then the verification should be successful
|
40
|
+
#
|
41
|
+
# Scenario: Successfully verifying that n2o emission factor is greater than zero
|
42
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
43
|
+
# When a data import verifies "N2o emission factor should be greater than zero"
|
44
|
+
# Then the verification should be successful
|
45
|
+
#
|
46
|
+
# Scenario: Successfully verifying that total travel units are kilometres
|
47
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
48
|
+
# When a data import verifies "Total travel units should be kilometres"
|
49
|
+
# Then the verification should be successful
|
50
|
+
#
|
51
|
+
# Scenario: Successfully verifying that fuel consumption units are litres
|
52
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
53
|
+
# When a data import verifies "Fuel consumption units should be litres"
|
54
|
+
# Then the verification should be successful
|
55
|
+
#
|
56
|
+
# Scenario: Successfully verifying that ch4 emission factor units are kilograms per litre
|
57
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
58
|
+
# When a data import verifies "Ch4 emission factor units should be kilograms per litre"
|
59
|
+
# Then the verification should be successful
|
60
|
+
#
|
61
|
+
# Scenario: Successfully verifying that n2o emission factor units are kilograms per litre
|
62
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_good"
|
63
|
+
# When a data import verifies "N2o emission factor units should be kilograms per litre"
|
64
|
+
# Then the verification should be successful
|
65
|
+
#
|
66
|
+
# Scenario: Failing to verify that type name is not missing
|
67
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
68
|
+
# When a data import verifies "Type name should never be missing"
|
69
|
+
# Then the verification should not be successful
|
70
|
+
#
|
71
|
+
# Scenario: Failing to verify that fuel common name is not missing
|
72
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
73
|
+
# When a data import verifies "Fuel common name should never be missing"
|
74
|
+
# Then the verification should not be successful
|
75
|
+
#
|
76
|
+
# Scenario: Failing to verify that type year name is not missing
|
77
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
78
|
+
# When a data import verifies "Type year name should never be missing"
|
79
|
+
# Then the verification should not be successful
|
80
|
+
#
|
81
|
+
# Scenario: Failing to verify that year is from 1990 to 2008
|
82
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
83
|
+
# When a data import verifies "Year should be from 1990 to 2008"
|
84
|
+
# Then the verification should not be successful
|
85
|
+
#
|
86
|
+
# Scenario: Failing to verify that total travel is greater than zero
|
87
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
88
|
+
# When a data import verifies "Total travel should be greater than zero"
|
89
|
+
# Then the verification should not be successful
|
90
|
+
#
|
91
|
+
# Scenario: Failing to verify that fuel consumption is greater than zero
|
92
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
93
|
+
# When a data import verifies "Fuel consumption should be greater than zero"
|
94
|
+
# Then the verification should not be successful
|
95
|
+
#
|
96
|
+
# Scenario: Failing to verify that ch4 emission factor is greater than zero
|
97
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
98
|
+
# When a data import verifies "Ch4 emission factor should be greater than zero"
|
99
|
+
# Then the verification should not be successful
|
100
|
+
#
|
101
|
+
# Scenario: Failing to verify that n2o emission factor is greater than zero
|
102
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
103
|
+
# When a data import verifies "N2o emission factor should be greater than zero"
|
104
|
+
# Then the verification should not be successful
|
105
|
+
#
|
106
|
+
# Scenario: Failing to verify that total travel units are kilometres
|
107
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
108
|
+
# When a data import verifies "Total travel units should be kilometres"
|
109
|
+
# Then the verification should not be successful
|
110
|
+
#
|
111
|
+
# Scenario: Failing to verify that fuel consumption units are litres
|
112
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
113
|
+
# When a data import verifies "Fuel consumption units should be litres"
|
114
|
+
# Then the verification should not be successful
|
115
|
+
#
|
116
|
+
# Scenario: Failing to verify that ch4 emission factor units are kilograms per litre
|
117
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
118
|
+
# When a data import verifies "Ch4 emission factor units should be kilograms per litre"
|
119
|
+
# Then the verification should not be successful
|
120
|
+
#
|
121
|
+
# Scenario: Failing to verify that n2o emission factor units are kilograms per litre
|
122
|
+
# Given a "AutomobileTypeFuelYear" data import fetches results listed in "automobile_type_fuel_year_bad"
|
123
|
+
# When a data import verifies "N2o emission factor units should be kilograms per litre"
|
124
|
+
# Then the verification should not be successful
|
@@ -1,94 +1,94 @@
|
|
1
|
-
Feature: Data import for AutomobileTypeFuelYearAge
|
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
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
1
|
+
# Feature: Data import for AutomobileTypeFuelYearAge
|
2
|
+
# As a data user
|
3
|
+
# I want to import AutomobileTypeFuelYearAge data
|
4
|
+
# So that I can perform type fuel year age-based calculations
|
5
|
+
#
|
6
|
+
# Scenario: Successfully verifying that type name is not missing
|
7
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
8
|
+
# When a data import verifies "Type name should never be missing"
|
9
|
+
# Then the verification should be successful
|
10
|
+
#
|
11
|
+
# Scenario: Successfully verifying that fuel common name is not missing
|
12
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
13
|
+
# When a data import verifies "Fuel common name should never be missing"
|
14
|
+
# Then the verification should be successful
|
15
|
+
#
|
16
|
+
# Scenario: Successfully verifying that type fuel year name is not missing
|
17
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
18
|
+
# When a data import verifies "Type fuel year name should never be missing"
|
19
|
+
# Then the verification should be successful
|
20
|
+
#
|
21
|
+
# Scenario: Successfully verifying that year is 2008
|
22
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
23
|
+
# When a data import verifies "Year should be 2008"
|
24
|
+
# Then the verification should be successful
|
25
|
+
#
|
26
|
+
# Scenario: Successfully verifying that age is from zero to thirty
|
27
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
28
|
+
# When a data import verifies "Age should be from 0 to 30"
|
29
|
+
# Then the verification should be successful
|
30
|
+
#
|
31
|
+
# Scenario: Successfully verifying that total travel percent is from zero to one
|
32
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
33
|
+
# When a data import verifies "Total travel percent should be from 0 to 1"
|
34
|
+
# Then the verification should be successful
|
35
|
+
#
|
36
|
+
# Scenario: Successfully verifying that annual distance is greater than zero
|
37
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
38
|
+
# When a data import verifies "Annual distance should be greater than zero"
|
39
|
+
# Then the verification should be successful
|
40
|
+
#
|
41
|
+
# Scenario: Successfully verifying that vehicles is greater than zero
|
42
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
43
|
+
# When a data import verifies "Vehicles should be greater than zero"
|
44
|
+
# Then the verification should be successful
|
45
|
+
#
|
46
|
+
# Scenario: Successfully verifying that annual distance units are kilometres
|
47
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_good"
|
48
|
+
# When a data import verifies "Annual distance units should be kilometres"
|
49
|
+
# Then the verification should be successful
|
50
|
+
#
|
51
|
+
# Scenario: Failing to verify that type name is not missing
|
52
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
53
|
+
# When a data import verifies "Type name should never be missing"
|
54
|
+
# Then the verification should not be successful
|
55
|
+
#
|
56
|
+
# Scenario: Failing to verify that fuel common name is not missing
|
57
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
58
|
+
# When a data import verifies "Fuel common name should never be missing"
|
59
|
+
# Then the verification should not be successful
|
60
|
+
#
|
61
|
+
# Scenario: Failing to verify that type fuel year name is not missing
|
62
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
63
|
+
# When a data import verifies "Type fuel year name should never be missing"
|
64
|
+
# Then the verification should not be successful
|
65
|
+
#
|
66
|
+
# Scenario: Failing to verify that year is 2008
|
67
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
68
|
+
# When a data import verifies "Year should be 2008"
|
69
|
+
# Then the verification should not be successful
|
70
|
+
#
|
71
|
+
# Scenario: Failing to verify that age is from zero to thirty
|
72
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
73
|
+
# When a data import verifies "Age should be from 0 to 30"
|
74
|
+
# Then the verification should not be successful
|
75
|
+
#
|
76
|
+
# Scenario: Failing to verify that total travel percent is from zero to one
|
77
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
78
|
+
# When a data import verifies "Total travel percent should be from 0 to 1"
|
79
|
+
# Then the verification should not be successful
|
80
|
+
#
|
81
|
+
# Scenario: Failing to verify that annual distance is greater than zero
|
82
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
83
|
+
# When a data import verifies "Annual distance should be greater than zero"
|
84
|
+
# Then the verification should not be successful
|
85
|
+
#
|
86
|
+
# Scenario: Failing to verify that vehicles is greater than zero
|
87
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
88
|
+
# When a data import verifies "Vehicles should be greater than zero"
|
89
|
+
# Then the verification should not be successful
|
90
|
+
#
|
91
|
+
# Scenario: Failing to verify that annual distance units are kilometres
|
92
|
+
# Given a "AutomobileTypeFuelYearAge" data import fetches results listed in "automobile_type_fuel_year_age_bad"
|
93
|
+
# When a data import verifies "Annual distance units should be kilometres"
|
94
|
+
# Then the verification should not be successful
|