defmodule Scopes.ShapeTest do use ExUnit.Case, async: true alias Scopes.Shape describe "shape:" do test "basic" do rec = Shape.create([:dom, :data], data: %{value: 42}) assert 42 = Shape.data(rec).value end end end