mirror of
https://gitee.com/dcren/initializr.git
synced 2025-07-15 23:13:30 +08:00
Polish "Remove surrounding brackets for gradle dependencies"
Closes gh-797
This commit is contained in:
parent
19301ed6ff
commit
51dbc92297
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2012-2018 the original author or authors.
|
* Copyright 2012-2019 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -95,10 +95,9 @@ public class ProjectGenerationSmokeTests
|
|||||||
page.type("gradle-project");
|
page.type("gradle-project");
|
||||||
page.submit();
|
page.submit();
|
||||||
assertSimpleProject().isGradleProject().gradleBuildAssert()
|
assertSimpleProject().isGradleProject().gradleBuildAssert()
|
||||||
|
.contains("implementation 'org.springframework.boot:spring-boot-starter'")
|
||||||
.contains(
|
.contains(
|
||||||
"implementation('org.springframework.boot:spring-boot-starter')")
|
"testImplementation 'org.springframework.boot:spring-boot-starter-test'");
|
||||||
.contains(
|
|
||||||
"testImplementation('org.springframework.boot:spring-boot-starter-test')");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
Reference in New Issue
Block a user