File Coverage

blib/lib/Mojo/Webqq/Model/Remote/_remove_group_admin.pm
Criterion Covered Total %
statement 3 10 30.0
branch 0 4 0.0
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 16 25.0


line stmt bran cond sub pod time code
1 1     1   6 use strict;
  1         2  
  1         128  
2             sub Mojo::Webqq::Model::_remove_group_admin{
3 0     0     my $self = shift;
4 0           my($uid,@qq) = @_;
5 0           my $api = "http://qinfo.clt.qq.com/cgi-bin/qun_info/set_group_admin";
6 0           my $json = $self->http_post($api,{Referer=>"http://qinfo.clt.qq.com/member.html",json=>1},
7             form=>{src=>"qinfo_v2",gc=>$uid,u=>join("|",$qq[0]),op=>0,bkn=>$self->get_csrf_token});
8 0 0         return if not defined $json;
9 0 0         return if $json->{ec}!=0;
10 0           return 1;
11             }
12             1;