@@ -50,7 +50,7 @@ mod locations {
50
50
}
51
51
52
52
#[ test]
53
- fn locations_under_program_files_ordinary_current_var_only ( ) {
53
+ fn locations_under_program_files_ordinary_values_current_var_only ( ) {
54
54
assert_eq ! (
55
55
locations_from!(
56
56
"ProgramFiles" => r"C:\Program Files" ,
@@ -67,7 +67,7 @@ mod locations {
67
67
}
68
68
69
69
#[ test]
70
- fn locations_under_program_files_ordinary_all_vars ( ) {
70
+ fn locations_under_program_files_ordinary_values_all_vars ( ) {
71
71
assert_eq ! (
72
72
locations_from!(
73
73
"ProgramFiles" => {
@@ -89,12 +89,13 @@ mod locations {
89
89
}
90
90
91
91
#[ test]
92
- fn locations_under_program_files_ordinary_no_vars ( ) {
92
+ fn locations_under_program_files_ordinary_values_no_vars ( ) {
93
+ // Regarding this test name: the significance of "ordinary values" is "no strange values."
93
94
assert_eq ! ( locations_from!( ) , Vec :: <PathBuf >:: new( ) ) ;
94
95
}
95
96
96
97
#[ test]
97
- fn locations_under_program_files_strange_all_vars_distinct ( ) {
98
+ fn locations_under_program_files_strange_values_all_vars_distinct ( ) {
98
99
assert_eq ! (
99
100
locations_from!(
100
101
"ProgramFiles" => r"X:\cur\rent" ,
@@ -121,7 +122,7 @@ mod locations {
121
122
}
122
123
123
124
#[ test]
124
- fn locations_under_program_files_strange_64bit_var_only ( ) {
125
+ fn locations_under_program_files_strange_values_64bit_var_only ( ) {
125
126
assert_eq ! (
126
127
locations_from!(
127
128
"ProgramW6432" => r"Z:\wi\de" ,
@@ -131,7 +132,7 @@ mod locations {
131
132
}
132
133
133
134
#[ test]
134
- fn locations_under_program_files_strange_all_vars_path_cruft ( ) {
135
+ fn locations_under_program_files_strange_values_all_vars_path_cruft ( ) {
135
136
assert_eq ! (
136
137
locations_from!(
137
138
"ProgramFiles" => r"Z:/wi//de/" ,
@@ -156,7 +157,7 @@ mod locations {
156
157
}
157
158
158
159
#[ test]
159
- fn locations_under_program_files_strange_some_relative ( ) {
160
+ fn locations_under_program_files_strange_values_some_relative ( ) {
160
161
assert_eq ! (
161
162
locations_from!(
162
163
"ProgramFiles" => r"foo\bar" ,
0 commit comments