Skip to content
Snippets Groups Projects
Commit bd247727 authored by lain's avatar lain
Browse files

Remove vestigial file.

parent b57fa46e
No related branches found
No related tags found
No related merge requests found
defmodule Pleroma.Builders.UserBuilder do
alias Pleroma.{User, Repo}
def build do
%User{
email: "test@example.org",
name: "Test Name",
nickname: "testname",
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
bio: "A tester.",
}
end
def insert do
Repo.insert(build())
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment