Commit a6eda470 authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade nuevo perfil de test

parent 286101a0
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
spring.datasource.name=redmic
spring.datasource.url=jdbc:postgresql://db:5432/redmic?currentSchema=app

logging.level.es.redmic=debug
+6 −3
Original line number Diff line number Diff line
package es.redmic.oauth;

import static org.junit.Assert.assertTrue;

/*-
 * #%L
 * OAuth
@@ -30,11 +32,12 @@ import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
@WebAppConfiguration
@ActiveProfiles("dev")
@ActiveProfiles("test")
public class ApiOauthApplicationTests {

	@Test
	public void contextLoads() {
		assertTrue(true);
	}

}