This is an automated email from the ASF dual-hosted git repository.
paulk-asert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
from bc4caccca6 GROOVY-12001: Bump jline to 4.1.0
new f5bcbecdd1 groovysh add skills file
new 49b577350e groovysh additional tests
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.agents/skills/groovy-tests/SKILL.md | 15 ++
.agents/skills/groovysh/SKILL.md | 158 +++++++++++++++++++++
AGENTS.md | 13 ++
subprojects/groovy-groovysh/AGENTS.md | 41 ++++++
subprojects/groovy-groovysh/build.gradle | 12 ++
.../groovy/org/apache/groovy/groovysh/Main.groovy | 4 +-
.../{TypesTest.groovy => ClassLoaderTest.groovy} | 37 +++--
.../groovysh/commands/ConsoleTestSupport.groovy | 19 ++-
.../apache/groovy/groovysh/commands/DelTest.groovy | 56 ++++++++
.../groovysh/commands/GrabCommandTest.groovy | 85 -----------
.../groovy/groovysh/commands/GrabTest.groovy | 53 +++++++
.../commands/GroovyCommandTestSupport.groovy | 64 ---------
.../groovysh/commands/HelpCommandTest.groovy | 33 +++--
.../groovy/groovysh/commands/InspectTest.groovy | 53 +++++++
.../groovy/groovysh/commands/MethodsTest.groovy | 9 ++
.../groovy/groovysh/commands/PipeTest.groovy | 61 ++++++++
.../groovy/groovysh/commands/SaveLoadTest.groovy | 76 ++++++++++
.../groovysh/commands/SlurpCsvFallbackTest.groovy | 79 +++++++++++
.../groovy/groovysh/commands/SlurpTest.groovy | 74 ++++++++++
.../groovysh/commands/SystemTestSupport.groovy | 72 +++++++++-
.../groovy/groovysh/commands/TypesTest.groovy | 9 ++
.../groovy/groovysh/jline/GroovyEngineTest.groovy | 73 ++++++++++
.../groovysh/jline/GroovyPosixCommandsTest.groovy | 138 ++++++++++++++++++
.../groovysh/jline/GroovySystemRegistryTest.groovy | 74 ++++++++++
24 files changed, 1123 insertions(+), 185 deletions(-)
create mode 100644 .agents/skills/groovysh/SKILL.md
create mode 100644 subprojects/groovy-groovysh/AGENTS.md
copy
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/{TypesTest.groovy
=> ClassLoaderTest.groovy} (50%)
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/DelTest.groovy
delete mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/GrabCommandTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/GrabTest.groovy
delete mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/GroovyCommandTestSupport.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/InspectTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/PipeTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/SaveLoadTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/SlurpCsvFallbackTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/commands/SlurpTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/jline/GroovyEngineTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/jline/GroovyPosixCommandsTest.groovy
create mode 100644
subprojects/groovy-groovysh/src/test/groovy/org/apache/groovy/groovysh/jline/GroovySystemRegistryTest.groovy