Figured out a neat way to quickly scaffold minimal test classes (great for concern testing):
require "test_helper"
class MyConcernTest < ActiveSupport::TestCase
TestClass = Data.define(:user, :other_property) do
include MyConcern
end
# ...
end