diff options
author | shivasubedi <shiva.subedi@est.tech> | 2021-08-04 12:13:36 +0100 |
---|---|---|
committer | shivasubedi <shiva.subedi@est.tech> | 2021-08-05 17:19:22 +0100 |
commit | dce1d58005d90950e00b22078d82559748dcb255 (patch) | |
tree | 5db973dcd04d1f0d28b6dca3e807affac093c520 /cps-service/src/test/groovy | |
parent | 0e210d77ec39915046a95615f5f9d2a2dc65162b (diff) |
CPS-506: List all known modules and revision
Issue-ID: CPS-506
Signed-off-by: shivasubedi <shiva.subedi@est.tech>
Change-Id: Id76fecc7dd10625cc3ecb940b1181b1e8bf829a1
Diffstat (limited to 'cps-service/src/test/groovy')
-rw-r--r-- | cps-service/src/test/groovy/org/onap/cps/api/impl/CpsModuleServiceImplSpec.groovy | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsModuleServiceImplSpec.groovy b/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsModuleServiceImplSpec.groovy index 579415f72e..b8bfd4593e 100644 --- a/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsModuleServiceImplSpec.groovy +++ b/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsModuleServiceImplSpec.groovy @@ -103,4 +103,12 @@ class CpsModuleServiceImplSpec extends Specification { 'dataspace-1' | 'schemas-set-1' | CASCADE_DELETE_ALLOWED 'dataspace-2' | 'schemas-set-2' | CASCADE_DELETE_PROHIBITED } + + def 'Get all yang resources module references.'(){ + given: 'an already present module reference' + def moduleReferences = [new ModuleReference()] + mockModuleStoreService.getAllYangResourcesModuleReferences() >> moduleReferences + expect: 'the list provided by persistence service is returned as result' + objectUnderTest.getAllYangResourcesModuleReferences() == moduleReferences + } } |