@@ -257,7 +257,6 @@ defmodule MastaniServer.Test.Mutation.Post do
257257 }
258258 }
259259 """
260- @ tag :wip
261260 test "auth user can set a valid tag to post" , ~m( post) a do
262261 { :ok , community } = db_insert ( :community )
263262 { :ok , tag } = db_insert ( :tag , % { thread: "post" , community: community } )
@@ -273,7 +272,6 @@ defmodule MastaniServer.Test.Mutation.Post do
273272 assert tag . id in assoc_tags
274273 end
275274
276- @ tag :wip
277275 test "can not set refined tag to post" , ~m( post) a do
278276 { :ok , community } = db_insert ( :community )
279277 { :ok , tag } = db_insert ( :tag , % { thread: "post" , community: community , title: "refined" } )
@@ -286,7 +284,6 @@ defmodule MastaniServer.Test.Mutation.Post do
286284 assert rule_conn |> mutation_get_error? ( @ set_tag_query , variables )
287285 end
288286
289- @ tag :wip
290287 test "auth user can set refined tag to post" , ~m( post) a do
291288 { :ok , community } = db_insert ( :community )
292289 { :ok , tag } = db_insert ( :tag , % { thread: "post" , community: community , title: "refined" } )
@@ -302,7 +299,6 @@ defmodule MastaniServer.Test.Mutation.Post do
302299 assert tag . id in assoc_tags
303300 end
304301
305- @ tag :wip
306302 test "auth user can set refined tag to post of spec topic" , ~m( post) a do
307303 { :ok , community } = db_insert ( :community )
308304 { :ok , user } = db_insert ( :user )
@@ -405,7 +401,6 @@ defmodule MastaniServer.Test.Mutation.Post do
405401 assert tag2 . id in assoc_tags
406402 end
407403
408- @ tag :wip
409404 test "can unset refined tag to a post" , ~m( post) a do
410405 { :ok , community } = db_insert ( :community )
411406 { :ok , tag } = db_insert ( :tag , % { thread: "post" , community: community , title: "refined" } )
@@ -425,7 +420,6 @@ defmodule MastaniServer.Test.Mutation.Post do
425420 assert tag . id not in assoc_tags
426421 end
427422
428- @ tag :wip
429423 test "can unset refined tag to a post of spec topic" , ~m( post) a do
430424 { :ok , community } = db_insert ( :community )
431425 { :ok , user } = db_insert ( :user )
0 commit comments