mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-15 00:11:42 -06:00
56 lines
1.6 KiB
Elixir
56 lines
1.6 KiB
Elixir
defmodule AcronymTest do
|
|
use ExUnit.Case
|
|
|
|
test "it produces acronyms from title case" do
|
|
assert Acronym.abbreviate("Portable Networks Graphic") === "PNG"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms from lower case" do
|
|
assert Acronym.abbreviate("Ruby on Rails") === "ROR"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it ignores punctuation" do
|
|
assert Acronym.abbreviate("First in, First out") === "FIFO"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms from phrases with acronyms" do
|
|
assert Acronym.abbreviate("GNU Image Manipulation Program") === "GIMP"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms ignoring punctuation and casing" do
|
|
assert Acronym.abbreviate("Complementary Metal-Oxide semiconductor") === "CMOS"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces a very long abbreviation" do
|
|
assert Acronym.abbreviate(
|
|
"Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me"
|
|
) === "ROTFLSHTMDCOALM"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms from phrases with consecutive delimiters" do
|
|
assert Acronym.abbreviate("Something - I made up from thin air") === "SIMUFTA"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms from phrases with apostrophes" do
|
|
assert Acronym.abbreviate("Halley's Comet") === "HC"
|
|
end
|
|
|
|
@tag :pending
|
|
test "it produces acronyms from phrases with underscore emphasis" do
|
|
assert Acronym.abbreviate("The Road _Not_ Taken") === "TRNT"
|
|
end
|
|
|
|
# Track specific test case: additional case
|
|
@tag :pending
|
|
test "it produces acronyms from inconsistent case" do
|
|
assert Acronym.abbreviate("HyperText Markup Language") === "HTML"
|
|
end
|
|
end
|