Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rootProjectDslFixtureFor (0.28 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            handle.stdinPipe.write("yes".bytes) // Select 'yes'
            handle.stdinPipe.write(TextUtil.platformLineSeparator.bytes)
    
            closeInteractiveExecutor(handle)
    
            then:
            rootProjectDslFixtureFor(BuildInitDsl.GROOVY).assertGradleFilesGenerated()
        }
    
        def "prompts to overwrite files if any exist and does not creates gradle files for no option"() {
            given: "a file exists in the build directory"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

        }
    
        protected ScriptDslFixture dslFixtureFor(BuildInitDsl dsl) {
            ScriptDslFixture.of(dsl, targetDir, subprojectName())
        }
    
        protected ScriptDslFixture rootProjectDslFixtureFor(BuildInitDsl dsl) {
            ScriptDslFixture.of(dsl, targetDir, null)
        }
    
        protected TestFile pom() {
            targetDir.file("pom.xml") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

        }
    
        def "#targetScriptDsl build file generation is skipped when #existingScriptDsl build file already exists"() {
            given:
            def existingDslFixture = rootProjectDslFixtureFor(existingScriptDsl as BuildInitDsl)
            def targetDslFixture = dslFixtureFor(targetScriptDsl as BuildInitDsl)
    
            and:
            existingDslFixture.buildFile.createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top