Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit a03c865

Browse files
committed
chore(clean up): rm wip tags in tests
1 parent 7ad22ac commit a03c865

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

test/groupher_server/accounts/accounts_test.exs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ defmodule GroupherServer.Test.Accounts do
9494
describe "[github login]" do
9595
alias Accounts.{GithubUser, User}
9696

97-
@tag :wip
9897
test "register a valid github user with non-exist in db" do
9998
assert {:error, _} =
10099
ORM.find_by(GithubUser, github_id: to_string(@valid_github_profile["id"]))

test/groupher_server/billing/billing_test.exs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ defmodule GroupherServer.Test.Billing do
1818
end
1919

2020
describe "[billing curd]" do
21-
@tag :wip
2221
test "create bill record with valid attrs", ~m(user valid_attrs)a do
2322
{:ok, record} = Billing.create_record(user, valid_attrs)
2423

test/groupher_server/mailer/email_test.exs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ defmodule GroupherServer.Test.Mailer do
99
@support_email get_config(:system_emails, :support)
1010

1111
describe "basic email" do
12-
@tag :wip
1312
test "send welcome email when user has email addr" do
1413
{:ok, user} = db_insert(:user, %{email: "fake@gmail.com"})
1514

@@ -24,7 +23,6 @@ defmodule GroupherServer.Test.Mailer do
2423
assert_delivered_email(expected_email)
2524
end
2625

27-
@tag :wip
2826
test "not send welcome email when user has no email addr" do
2927
{:ok, user} = db_insert(:user)
3028

test/helper/orm_test.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ defmodule GroupherServer.Test.Helper.ORMTest do
2424
# end
2525

2626
# describe "orm hooks" do
27-
# @tag :wip2
28-
# test "create hooks" do
27+
# test "create hooks" do
2928
# user_attrs = mock_attrs(:user)
3029
# user_attrs2 = mock_attrs(:user)
3130

0 commit comments

Comments
 (0)