File: earmark_parser_test.exs

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 (11 lines) | stat: -rw-r--r-- 244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
defmodule EarmarkParserTest do
  use ExUnit.Case

  doctest EarmarkParser, import: true

  describe "some basic functions" do
    test "version" do
      assert Regex.match?(~r{\A\d+\.\d+}, to_string(EarmarkParser.version()))
    end
  end
end