1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package br.com.ingenieux.mojo.beanstalk;
18
19 import org.junit.Ignore;
20
21 import br.com.ingenieux.mojo.beanstalk.app.CreateApplicationMojo;
22 import br.com.ingenieux.mojo.beanstalk.version.CreateApplicationVersionMojo;
23
24 @Ignore
25 public class DescribeConfigurationTemplatesTest extends BeanstalkTestBase {
26
27 @Override
28 protected void configureMojos() throws Exception {
29 createAppMojo = getMojo(CreateApplicationMojo.class);
30
31 createAppVersionMojo = getMojo(CreateApplicationVersionMojo.class);
32 }
33
34 public void testDescribeConfigurationTemplates() throws Exception {
35 String appName = properties.getProperty("appname");
36
37 setVariableValueToObject(createAppMojo, "applicationName", appName);
38 setVariableValueToObject(createConfigurationTemplateMojo, "applicationName", appName);
39
40 createAppMojo.execute();
41
42 createConfigurationTemplateMojo.execute();
43 }
44 }