Skip to content

Commit

Permalink
✅ Add tests to UseIOModules
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Colman Lopes <[email protected]>
  • Loading branch information
LeoColman committed Jan 29, 2025
1 parent 012e147 commit 5f076c2
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package br.com.colman.petals.use.io

import br.com.colman.petals.use.io.input.UseInputModule
import br.com.colman.petals.use.io.output.UseOutputModule
import io.kotest.core.spec.style.FunSpec
import io.kotest.matchers.shouldBe

class UseIOModulesTest : FunSpec({

test("UseIOModules should be a list of just the InputModule and the OutputModule") {
UseIOModules shouldBe listOf(UseInputModule, UseOutputModule)
}
})

0 comments on commit 5f076c2

Please sign in to comment.