File: acceptance_test_case.ex

package info (click to toggle)
elixir-earmark-parser 1.4.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: makefile: 9
file content (15 lines) | stat: -rw-r--r-- 369 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
defmodule Support.AcceptanceTestCase do
  defmacro __using__(_options) do
    quote do
      use ExUnit.Case, async: true

      alias EarmarkParser.Options

      import Support.Helpers
      import EarmarkAstDsl
      import Support.AstHelpers, only: [assert_asts_are_equal: 2, ast_from_md: 1, ast_from_md: 2]
    end
  end
end

# SPDX-License-Identifier: Apache-2.0