@@ -36,8 +36,8 @@ defmodule GroupherServer.Test.Query.ArticleReactionUsers do
3636 }
3737 }
3838 """
39- @ tag :wip
40- test "guest can get favroted user list after upvote to a post" ,
39+ @ tag :wip2
40+ test "guest can get upvoted users list after upvote to a post" ,
4141 ~m( guest_conn post user user2) a do
4242 { :ok , _ } = CMS . upvote_article ( :post , post . id , user )
4343 { :ok , _ } = CMS . upvote_article ( :post , post . id , user2 )
@@ -52,8 +52,8 @@ defmodule GroupherServer.Test.Query.ArticleReactionUsers do
5252 assert user_exist_in? ( user2 , results [ "entries" ] , :string_key )
5353 end
5454
55- @ tag :wip
56- test "guest can get favroted user list after upvote to a job" ,
55+ @ tag :wip3
56+ test "guest can get upvoted users list after upvote to a job" ,
5757 ~m( guest_conn job user user2) a do
5858 { :ok , _ } = CMS . upvote_article ( :job , job . id , user )
5959 { :ok , _ } = CMS . upvote_article ( :job , job . id , user2 )
@@ -89,8 +89,9 @@ defmodule GroupherServer.Test.Query.ArticleReactionUsers do
8989 }
9090 }
9191 """
92- @ tag :wip
93- test "guest can get stared user list after collect a post" , ~m( guest_conn post user user2) a do
92+ @ tag :wip3
93+ test "guest can get collected users list after collect a post" ,
94+ ~m( guest_conn post user user2) a do
9495 { :ok , _ } = CMS . collect_article ( :post , post . id , user )
9596 { :ok , _ } = CMS . collect_article ( :post , post . id , user2 )
9697
@@ -104,8 +105,9 @@ defmodule GroupherServer.Test.Query.ArticleReactionUsers do
104105 assert user_exist_in? ( user2 , results [ "entries" ] , :string_key )
105106 end
106107
107- @ tag :wip
108- test "guest can get stared user list after collect a job" , ~m( guest_conn job user user2) a do
108+ @ tag :wip3
109+ test "guest can get collected users list after collect a job" ,
110+ ~m( guest_conn job user user2) a do
109111 { :ok , _ } = CMS . collect_article ( :job , job . id , user )
110112 { :ok , _ } = CMS . collect_article ( :job , job . id , user2 )
111113
0 commit comments