From 39ebb478dec4565bc71c87d774f48b447c41f833 Mon Sep 17 00:00:00 2001 From: kotva006 Date: Fri, 10 May 2024 22:23:13 -0500 Subject: [PATCH] Added missing file --- test/support/factory/prediction.ex | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/support/factory/prediction.ex diff --git a/test/support/factory/prediction.ex b/test/support/factory/prediction.ex new file mode 100644 index 0000000000..057b21ba71 --- /dev/null +++ b/test/support/factory/prediction.ex @@ -0,0 +1,12 @@ +defmodule Test.Support.Factory.Prediction do + @moduledoc """ + Generated fake data for %RoutePattern{} + """ + use ExMachina + + alias Predictions.Prediction + + def prediction_factory do + %Prediction{} + end +end