This is an automated email from the ASF dual-hosted git repository.
olli pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-integration-tests.git
The following commit(s) were added to refs/heads/master by this push:
new 4746ca9 SLING-9999 Remove cyclic dependency between scripting and
servlets features
4746ca9 is described below
commit 4746ca970fcdf390dc617b6d90db60ad94f50032
Author: Oliver Lietz <[email protected]>
AuthorDate: Sun Mar 21 12:00:09 2021 +0100
SLING-9999 Remove cyclic dependency between scripting and servlets features
test for new bundle org.apache.sling.scripting.spi
---
.../org/apache/sling/karaf/tests/bootstrap/SlingScriptingIT.java | 7 +++++++
1 file changed, 7 insertions(+)
diff --git
a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingIT.java
b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingIT.java
index 79e5a72..f6acaa3 100644
--- a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingIT.java
+++ b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingIT.java
@@ -52,6 +52,13 @@ public class SlingScriptingIT extends KarafTestSupport {
}
@Test
+ public void testOrgApacheSlingScriptingSpi() {
+ final Bundle bundle = findBundle("org.apache.sling.scripting.spi");
+ assertNotNull(bundle);
+ assertEquals(Bundle.ACTIVE, bundle.getState());
+ }
+
+ @Test
public void testOrgApacheSlingScriptingCore() {
final Bundle bundle = findBundle("org.apache.sling.scripting.core");
assertNotNull(bundle);