grangerelixx
Any suggestions on how to load dependency of factory in seeds file?
factory.ex
alias Test/Utils/TextGenerator
def post_factory(attrs \\ %{}) do
%Post{
body: TextGenerator.text_fake()
}
end
seeds.exs
{factory, _} = Code.require_file("factory.ex", "./test/support/") |> hd()
alias Blog.Posts
{time, _} =
:timer.tc(fn ->
tasks =
Enum.map(1..100, fn _ ->
Task.async(fn ->
post =
factory.post_factory
|> Map.from_struct()
Enum.each(1..100, fn _ -> Posts.create_post(post) end)
end)
end)
Task.await_many(tasks, 20_000)
end)
This is the error I get…
** (UndefinedFunctionError) function Blog.Utils.TextGenerator.text_fake/0 is undefined (module Blog.Utils.TextGenerator is not available)
Blog.Utils.TextGenerator.text_fake()
test/support/factory.ex:23: Blog.Factory.post_factory/1
priv/repo/seeds.exs:34: anonymous fn/1 in :elixir_compiler_1.__FILE__/1
(elixir 1.11.3) lib/task/supervised.ex:90: Task.Supervised.invoke_mfa/2
(elixir 1.11.3) lib/task/supervised.ex:35: Task.Supervised.reply/5
(stdlib 3.14) proc_lib.erl:226: :proc_lib.init_p_do_apply/3
Function: #Function<2.133263724 in file:priv/repo/seeds.exs>
Args: []
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 3 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
grangerelixx
Since
Code.require_filecan require only one file, is there any other function that will support multiple files in my case here?grangerelixx
This did work but it would make all the files in test/support or just even the required files available everywhere in dev with an import or alias. Since it is required only in seeds.ex, is there way to have dependencies only in the file, and not the path?
al2o3cr
A typical approach with using factory-ish files in
seeds.exsis to includetest/supportwhen compiling indev:(normally only
:testincludes that directory)This should avoid any need to manually invoke
Code.require_file.