Skip to content
Snippets Groups Projects
Select Git revision
  • bc09371246073b46d441ae5ac95c225ea6dbb5a9
  • test default protected
  • master protected
  • original
  • pirati-backup protected
  • beta-2
  • beta-1
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.16
  • v3.0.15
  • v3.0.14
  • v3.0.13
  • v3.0.12
  • v3.0.11
  • v3.0.10
  • v3.0.9
  • v3.0.8
  • v3.0.7
  • v3.0.6
  • v3.0.5
  • v3.0.4
25 results

clever.py

Blame
  • config.t 310 B
    use Mojo::Base -strict;
    
    use Test::More;
    use Test::Mojo;
    
    use constant SECRET => 'TEST';
    
    my $t = Test::Mojo->new('CF', {
        test                 => 1,
        test_auth_jwt_secret => SECRET,
    });
    
    # konfigurace aplikace
    $t->get_ok('/api/config')
        ->status_is(200)
        ->json_message_has('')
    ;
    
    done_testing();