This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
temple/test/parser/text_test.exs
Mitchell Hanberg c965048f40
Better whitespace handling and control (#145)
* Fine tune whitespace

The EEx outut now emits more human-readable and predictable formatting.
This includes proper indenting, at least for each "root" template.

* Internal whitespace control

You can now use a bang version of any nonvoid tag to emit the markup
witout the internal whitespace. This means that there will not be a
newline emitted after the opening tag and before the closing tag.
2021-08-29 17:45:07 -04:00

45 lines
987 B
Elixir

defmodule Temple.Parser.TextTest do
use ExUnit.Case, async: true
alias Temple.Parser.Text
alias Temple.Support.Utils
describe "applicable?/1" do
test "returns true when the node is a string literal" do
assert Text.applicable?("string literal")
end
test "returns fals when the node is a anything other than a string literal" do
for node <- [
:atom,
%{key: :value},
{:ast?, [], []},
[]
] do
refute Text.applicable?(node)
end
end
end
describe "run/2" do
test "adds a text node to the buffer" do
text = "string literal"
ast = Text.run(text)
assert %Text{text: text} == ast
end
end
describe "Temple.Generator.to_eex/1" do
test "emits eex" do
result =
"string literal"
|> Text.run()
|> Temple.Generator.to_eex()
|> Utils.iolist_to_binary()
assert result == ~s|string literal\n|
end
end
end