Skip to content

Commit

Permalink
Sjekker at arbeidsforholdliste ikke blir mappet ut for opptjeningsvur…
Browse files Browse the repository at this point in the history
…dering

Co-authored-by: Simen Ullern <simen.ullern@nav.no>
  • Loading branch information
amalieem and Simenullern committed Aug 20, 2024
1 parent 8cf1afd commit 86c92cf
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,18 @@ internal class InntekterTest {
assertTrue(arbeidsforhold.isEmpty)
}

@Test
fun `Mapper ikke ut arbeidsforholdliste for opptjeningsvurdering`() {
val start = YearMonth.of(2024, 7)
val slutt = YearMonth.of(2024, 7)
testRapid.sendTestMessage(behov(start, slutt, Inntekter.Type.InntekterForOpptjeningsvurdering))
val inntekt =
testRapid.inspektør.message(0).path("@løsning").path(Inntekter.Type.InntekterForOpptjeningsvurdering.name)[0]

val arbeidsforhold = inntekt.path("arbeidsforholdliste")
assertTrue(arbeidsforhold.isEmpty)
}

private fun assertLøsning(behovType: Inntekter.Type, vararg yearsMonths: YearMonth) {
assertTrue(testRapid.inspektør.message(0).hasNonNull("@løsning"))
assertEquals(yearsMonths.toList(),
Expand Down

0 comments on commit 86c92cf

Please sign in to comment.