From 89d36d1d4396726846463ab8167035714f74c7de Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 3 Oct 2019 23:40:16 -0400 Subject: [PATCH] Added single word clapback --- .../com/anthonycicchetti/slackbot/Transformations.kt | 10 +++++++--- .../anthonycicchetti/slackbot/TransformationsTest.kt | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt index 2d4cbd0..f371edb 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt @@ -15,9 +15,13 @@ fun String.toSpongemock(): String { } fun String.toClapText(): String { - return this - .split(' ') - .joinToString(separator = " 👏 ") + with(this + .split(' ')) { + if (this.size == 1) { + return "\uD83D\uDC4F ${this[0]} \uD83D\uDC4F" + } + return joinToString(separator = " 👏 ") + } } private fun Int.isOdd(): Boolean = this.rem(2) == 0 \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt index 8752e06..12ecd04 100644 --- a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt +++ b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt @@ -74,7 +74,7 @@ internal class TransformationsTest { @Test fun `Claptext works with one word`() { val actual = "Find" - val expected = "Find" + val expected = "\uD83D\uDC4F Find \uD83D\uDC4F" assertEquals(expected, actual.toClapText()) }