@@ -21,7 +21,7 @@ test::classic::defaults() {
21
21
# With default settings
22
22
23
23
test::utils::setupFixture " classic_default"
24
- test::helpers::test_deploy " PHP (classic)" " 8.1."
24
+ test::helpers::deploy " PHP (classic)" " 8.1."
25
25
}
26
26
27
27
test::classic::php80 () {
@@ -38,7 +38,7 @@ test::classic::php80() {
38
38
fi
39
39
40
40
test::utils::setupFixture " classic_default"
41
- test::helpers::test_deploy " PHP (classic)" " 8.0."
41
+ test::helpers::deploy " PHP (classic)" " 8.0."
42
42
}
43
43
44
44
test::classic::php81 () {
@@ -49,7 +49,7 @@ test::classic::php81() {
49
49
export PHP_VERSION
50
50
51
51
test::utils::setupFixture " classic_default"
52
- test::helpers::test_deploy " PHP (classic)" " 8.1."
52
+ test::helpers::deploy " PHP (classic)" " 8.1."
53
53
}
54
54
55
55
test::classic::php82 () {
@@ -60,7 +60,7 @@ test::classic::php82() {
60
60
export PHP_VERSION
61
61
62
62
test::utils::setupFixture " classic_default"
63
- test::helpers::test_deploy " PHP (classic)" " 8.2."
63
+ test::helpers::deploy " PHP (classic)" " 8.2."
64
64
}
65
65
66
66
test::classic::php83 () {
@@ -71,15 +71,15 @@ test::classic::php83() {
71
71
export PHP_VERSION
72
72
73
73
test::utils::setupFixture " classic_default"
74
- test::helpers::test_deploy " PHP (classic)" " 8.3."
74
+ test::helpers::deploy " PHP (classic)" " 8.3."
75
75
}
76
76
77
77
test::composer::defaults () {
78
78
# Test a deployment of a PHP app using Composer
79
79
# With default settings
80
80
81
81
test::utils::setupFixture " composer_default"
82
- test::helpers::test_deploy " PHP (composer.json)" " 8.1."
82
+ test::helpers::deploy " PHP (composer.json)" " 8.1."
83
83
}
84
84
85
85
test::composer::php80 () {
@@ -93,31 +93,31 @@ test::composer::php80() {
93
93
fi
94
94
95
95
test::utils::setupFixture " composer_php80"
96
- test::helpers::test_deploy " PHP (composer.json)" " 8.0."
96
+ test::helpers::deploy " PHP (composer.json)" " 8.0."
97
97
}
98
98
99
99
test::composer::php81 () {
100
100
# Test a deployment of a PHP app using Composer
101
101
# Specifying we want PHP 8.1.x in composer.json
102
102
103
103
test::utils::setupFixture " composer_php81"
104
- test::helpers::test_deploy " PHP (composer.json)" " 8.1."
104
+ test::helpers::deploy " PHP (composer.json)" " 8.1."
105
105
}
106
106
107
107
test::composer::php82 () {
108
108
# Test a deployment of a PHP app using Composer
109
109
# Specifying we want PHP 8.2.x in composer.json
110
110
111
111
test::utils::setupFixture " composer_php82"
112
- test::helpers::test_deploy " PHP (composer.json)" " 8.2."
112
+ test::helpers::deploy " PHP (composer.json)" " 8.2."
113
113
}
114
114
115
115
test::composer::php83 () {
116
116
# Test a deployment of a PHP app using Composer
117
117
# Specifying we want PHP 8.3.x in composer.json
118
118
119
119
test::utils::setupFixture " composer_php83"
120
- test::helpers::test_deploy " PHP (composer.json)" " 8.3."
120
+ test::helpers::deploy " PHP (composer.json)" " 8.3."
121
121
}
122
122
123
123
test::composer::php_version_defaults () {
@@ -128,10 +128,10 @@ test::composer::php_version_defaults() {
128
128
export PHP_VERSION
129
129
130
130
test::utils::setupFixture " composer_default"
131
- test::helpers::test_compile " 8.3."
131
+ test::helpers::compile " 8.3."
132
132
}
133
133
134
- test::composer::php_version_lower_than_env () {
134
+ test::composer::php_version_greater_than_env () {
135
135
# Test a deployment of a PHP app using Composer
136
136
# Where the PHP version requirement is specified in both composer.json
137
137
# and PHP_VERSION.
@@ -142,10 +142,10 @@ test::composer::php_version_lower_than_env() {
142
142
export PHP_VERSION
143
143
144
144
test::utils::setupFixture " composer_php83"
145
- test::helpers::test_compile " 8.3."
145
+ test::helpers::compile " 8.3."
146
146
}
147
147
148
- test::composer::php_version_greater_than_env () {
148
+ test::composer::php_version_lower_than_env () {
149
149
# Test a deployment of a PHP app using Composer
150
150
# Where PHP version requirement is specified in both composer.json
151
151
# and PHP_VERSION.
@@ -156,7 +156,7 @@ test::composer::php_version_greater_than_env() {
156
156
export PHP_VERSION
157
157
158
158
test::utils::setupFixture " composer_php82"
159
- test::helpers::test_compile " 8.2."
159
+ test::helpers::compile " 8.2."
160
160
}
161
161
162
162
@@ -174,7 +174,7 @@ suite_addTest test::composer::php81
174
174
suite_addTest test::composer::php82
175
175
suite_addTest test::composer::php83
176
176
177
- suite_addTest test::composer::over_defaults
178
- suite_addTest test::composer::over_lower_env
179
- suite_addTest test::composer::over_greater_env
177
+ suite_addTest test::composer::php_version_defaults
178
+ suite_addTest test::composer::php_version_greater_than_env
179
+ suite_addTest test::composer::php_version_lower_than_env
180
180
0 commit comments