Closed edwinthinks closed 5 years ago
Hello,
I'am running Phoenix 1.4 and I noticed that when I ran:
MIX_ENV=test mix espec_phoenix.init
It would generate this in spec/espec_phoenix_extend.ex:
spec/espec_phoenix_extend.ex
def channel do quote do alias MyApp.Repo @endpoint MyApp.Endpoint end end
Whereas it should be adding "Web" after MyApp like this:
def channel do quote do alias MyApp.Repo @endpoint MyAppWeb.Endpoint end end
Hello,
I'am running Phoenix 1.4 and I noticed that when I ran:
It would generate this in
spec/espec_phoenix_extend.ex
:Whereas it should be adding "Web" after MyApp like this: