Remove vestigial file.

This commit is contained in:
Roger Braun 2017-04-05 11:59:25 +02:00
parent b57fa46e6a
commit bd247727e2
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
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