fix some code style and add checks to ci

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-01-14 17:56:50 +01:00
parent fc89c563ec
commit 1217361b6c
64 changed files with 242 additions and 108 deletions

View File

@@ -36,7 +36,7 @@ defmodule Eventos.AccountsTest do
assert account.domain == "some domain"
assert account.private_key == "some private_key"
assert account.public_key == "some public_key"
assert account.suspended == true
assert account.suspended
assert account.uri == "some uri"
assert account.url == "some url"
assert account.username == "some username"
@@ -55,7 +55,7 @@ defmodule Eventos.AccountsTest do
assert account.domain == "some updated domain"
assert account.private_key == "some updated private_key"
assert account.public_key == "some updated public_key"
assert account.suspended == false
refute account.suspended
assert account.uri == "some updated uri"
assert account.url == "some updated url"
assert account.username == "some updated username"