You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it'randomly orders any buildpacks with the same position (for now we did not want to make clever logic of shifting stuff around: up to the user to get it all correct)'do
135
144
@another_buildpack.position=1
136
145
@another_buildpack.save
137
146
138
147
expect(all_buildpacks[2].key).toeq('a key')
139
148
end
140
149
150
+
it'does not reorder cnb buildpacks when classical buildpacks change position)'do
151
+
@cnb_buildpack.position=1
152
+
@cnb_buildpack.save
153
+
154
+
expect(cnb_buildpacks[0].key).toeq('cnb key')
155
+
end
156
+
141
157
context'and there are buildpacks with null keys'do
0 commit comments