Rename project to Mobilizon

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-10-11 17:37:39 +02:00
parent 3b48ac957f
commit 559c889f1b
191 changed files with 739 additions and 739 deletions

View File

@@ -1,10 +1,10 @@
defmodule EventosWeb.CommentControllerTest do
use EventosWeb.ConnCase
defmodule MobilizonWeb.CommentControllerTest do
use MobilizonWeb.ConnCase
alias Eventos.Events
alias Eventos.Events.Comment
alias Mobilizon.Events
alias Mobilizon.Events.Comment
import Eventos.Factory
import Mobilizon.Factory
@create_attrs %{text: "some text"}
@update_attrs %{text: "some updated text"}
@@ -29,7 +29,7 @@ defmodule EventosWeb.CommentControllerTest do
"id" => id,
"text" => "some text",
"uuid" => uuid,
"url" => "#{EventosWeb.Endpoint.url()}/comments/#{uuid}"
"url" => "#{MobilizonWeb.Endpoint.url()}/comments/#{uuid}"
}
end
@@ -60,7 +60,7 @@ defmodule EventosWeb.CommentControllerTest do
"id" => id,
"text" => "some updated text",
"uuid" => uuid,
"url" => "#{EventosWeb.Endpoint.url()}/comments/#{uuid}"
"url" => "#{MobilizonWeb.Endpoint.url()}/comments/#{uuid}"
}
end