Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: removed the @Ignore from the Tests #668

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions exercises/practice/acronym/src/test/kotlin/AcronymTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,49 +8,41 @@ class AcronymTest {
"Portable Network Graphics",
"PNG")

@Ignore
@Test
fun `lowercase word in the middle`() = assertAcronymEquals(
"Ruby on Rails",
"ROR")

@Ignore
@Test
fun `punctuation is ignored`() = assertAcronymEquals(
"First In, First Out",
"FIFO")

@Ignore
@Test
fun `uppercased word at the start`() = assertAcronymEquals(
"GNU Image Manipulation Program",
"GIMP")

@Ignore
@Test
fun `hyphen is ignored`() = assertAcronymEquals(
"Complementary metal-oxide semiconductor",
"CMOS")

@Ignore
@Test
fun `lots of words`() = assertAcronymEquals(
"Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me",
"ROTFLSHTMDCOALM")

@Ignore
@Test
fun `consecutive delimiters`() = assertAcronymEquals(
"Something - I made up from thin air",
"SIMUFTA")

@Ignore
@Test
fun `apostrophe is ignored`() = assertAcronymEquals(
"Halley's Comet",
"HC")

@Ignore
@Test
fun `underscore emphasis is ignored`() = assertAcronymEquals(
"The Road _Not_ Taken",
Expand Down