File Coverage

blib/lib/Mojo/Webqq/Model/Remote/_shutup_group_member.pm
Criterion Covered Total %
statement 3 11 27.2
branch 0 4 0.0
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 17 23.5


line stmt bran cond sub pod time code
1 1     1   7 use strict;
  1         2  
  1         123  
2             sub Mojo::Webqq::Model::_shutup_group_member{
3 0     0     my $self = shift;
4 0           my($uid,$t,@qq) = @_;
5 0           my $api = "http://qinfo.clt.qq.com/cgi-bin/qun_info/set_group_shutup";
6 0           my $json = $self->http_post($api,{Referer=>"http://qinfo.clt.qq.com/qinfo_v3/member.html",json=>1},form=>{gc=>$uid,shutup_list=>$self->to_json([map {{uin=>$_,t=>$t}} @qq]),bkn=>$self->get_csrf_token});
  0            
7 0 0         return if not defined $json;
8 0 0         return if $json->{ec}!=0;
9 0           return 1;
10             }
11             1;