gcode/test/model/program_test.exs
James Harton ccf4635cca feat(model,serialise): Implement a basic G-Code model and serialiser.
It's not very thorough at the moment, but it should work for now.
2021-01-04 22:14:40 +13:00

5 lines
138 B
Elixir

defmodule Gcode.Model.ProgramTest do
use ExUnit.Case, async: true
alias Gcode.Model.{Program, Tape}
doctest Gcode.Model.Program
end