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/temple_namespace_void_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

68 lines
1.5 KiB
Elixir

defmodule Temple.Parser.TempleNamespaceVoidTest do
use ExUnit.Case, async: true
alias Temple.Parser.TempleNamespaceVoid
alias Temple.Parser.VoidElementsAliases
alias Temple.Support.Utils
describe "applicable?/1" do
test "returns true when the node is a Temple aliased nonvoid element" do
raw_ast =
quote do
Temple.input(name: "bob")
end
assert TempleNamespaceVoid.applicable?(raw_ast)
end
test "returns false when the node is anything other than a Temple aliased nonvoid element" do
raw_asts = [
quote do
Temple.div do
"foo"
end
end,
quote do
link to: "/the/route" do
"Label"
end
end
]
for raw_ast <- raw_asts do
refute TempleNamespaceVoid.applicable?(raw_ast)
end
end
end
describe "run/2" do
test "adds a node to the buffer" do
raw_ast =
quote do
Temple.meta(class: "foo", id: var)
end
ast = TempleNamespaceVoid.run(raw_ast)
assert %VoidElementsAliases{
name: :meta,
attrs: [class: "foo", id: {:var, [], _}]
} = ast
end
end
describe "to_eex/1" do
test "emits eex" do
result =
quote do
Temple.meta(content: "foo")
end
|> TempleNamespaceVoid.run()
|> Temple.Generator.to_eex()
|> Utils.iolist_to_binary()
assert result == ~s|<meta content="foo">\n|
end
end
end