@@ -21,7 +21,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
2121 end
2222
2323 describe "[upvote notify]" do
24- @ tag :wip22
2524 test "upvote hook should work on blog" , ~m( user2 blog) a do
2625 { :ok , blog } = preload_author ( blog )
2726
@@ -41,7 +40,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
4140 assert user_exist_in? ( user2 , notify . from_users )
4241 end
4342
44- @ tag :wip22
4543 test "upvote hook should work on blog comment" , ~m( user2 blog comment) a do
4644 { :ok , comment } = CMS . upvote_comment ( comment . id , user2 )
4745 { :ok , comment } = preload_author ( comment )
@@ -62,7 +60,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
6260 assert user_exist_in? ( user2 , notify . from_users )
6361 end
6462
65- @ tag :wip22
6663 test "undo upvote hook should work on blog" , ~m( user2 blog) a do
6764 { :ok , blog } = preload_author ( blog )
6865
@@ -78,7 +75,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
7875 assert notifications . total_count == 0
7976 end
8077
81- @ tag :wip22
8278 test "undo upvote hook should work on blog comment" , ~m( user2 comment) a do
8379 { :ok , comment } = CMS . upvote_comment ( comment . id , user2 )
8480
@@ -97,7 +93,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
9793 end
9894
9995 describe "[collect notify]" do
100- @ tag :wip22
10196 test "collect hook should work on blog" , ~m( user2 blog) a do
10297 { :ok , blog } = preload_author ( blog )
10398
@@ -117,7 +112,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
117112 assert user_exist_in? ( user2 , notify . from_users )
118113 end
119114
120- @ tag :wip22
121115 test "undo collect hook should work on blog" , ~m( user2 blog) a do
122116 { :ok , blog } = preload_author ( blog )
123117
@@ -135,7 +129,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
135129 end
136130
137131 describe "[comment notify]" do
138- @ tag :wip22
139132 test "blog author should get notify after some one comment on it" , ~m( user2 blog) a do
140133 { :ok , blog } = preload_author ( blog )
141134
@@ -155,7 +148,6 @@ defmodule GroupherServer.Test.CMS.Hooks.NotifyBlog do
155148 assert user_exist_in? ( user2 , notify . from_users )
156149 end
157150
158- @ tag :wip22
159151 test "blog comment author should get notify after some one reply it" , ~m( user2 user3 blog) a do
160152 { :ok , blog } = preload_author ( blog )
161153
0 commit comments