Added new reconcile test for buildpacks

This commit is contained in:
nsingh@pivotal.io
2018-12-11 09:44:54 -08:00
parent 484d3b7b21
commit 02f45063b8

View File

@@ -827,6 +827,16 @@ public class ManifestYamlEditorTest {
assertEquals(DiagnosticSeverity.Warning, problem.getSeverity());
}
@Test
public void reconcileBuildpacks() throws Exception {
Editor editor = harness.newEditor(
"applications:\n" +
"- name: my-app\n" +
" buildpacks:\n" +
" - java_buildpack");
editor.assertProblems(/* NONE */);
}
@Test
public void hoverInfos() throws Exception {