diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 04771c0..4a20c62 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -14,6 +14,7 @@
+
diff --git a/src/test/kotlin/fr/postgresjson/MigrationTest.kt b/src/test/kotlin/fr/postgresjson/MigrationTest.kt
index 2e04a39..822c3f0 100644
--- a/src/test/kotlin/fr/postgresjson/MigrationTest.kt
+++ b/src/test/kotlin/fr/postgresjson/MigrationTest.kt
@@ -83,12 +83,12 @@ class MigrationTest : TestAbstract() {
val resourcesFunctions = this::class.java.getResource("/sql/function/Test")!!.toURI()
Migrations(listOf(resources, resourcesFunctions), connection).apply {
up().apply {
- size `should be equal to` 6
+ size `should be equal to` 7
}
}
Migrations(listOf(resources, resourcesFunctions), connection).apply {
forceAllDown().apply {
- size `should be equal to` 6
+ size `should be equal to` 7
}
}
}
@@ -97,7 +97,7 @@ class MigrationTest : TestAbstract() {
fun `run functions migrations`() {
val resources = this::class.java.getResource("/sql/function/Test")!!.toURI()
Migrations(resources, connection).apply {
- run().size `should be equal to` 5
+ run().size `should be equal to` 6
}
val objTest: RequesterTest.ObjTest? = Requester(connection, functionsDirectory = resources)
diff --git a/src/test/kotlin/fr/postgresjson/functionGenerator/FunctionGeneratorTest.kt b/src/test/kotlin/fr/postgresjson/functionGenerator/FunctionGeneratorTest.kt
index 239573e..518d42e 100644
--- a/src/test/kotlin/fr/postgresjson/functionGenerator/FunctionGeneratorTest.kt
+++ b/src/test/kotlin/fr/postgresjson/functionGenerator/FunctionGeneratorTest.kt
@@ -1,10 +1,12 @@
package fr.postgresjson.functionGenerator
import fr.postgresjson.definition.Function
+import io.kotest.core.Tag
import io.kotest.core.spec.style.StringSpec
import org.amshove.kluent.`should be equal to`
class FunctionGeneratorTest : StringSpec({
+ tags(Tag("Generator"))
val functionDirectory = this::class.java.getResource("/sql/function/Test")!!.toURI()
val generator = FunctionGenerator(functionDirectory)