Skip to content
Snippets Groups Projects
Select Git revision
  • 35d6d9ccd0f9c56ff25e3f954c6492077c7afd38
  • master default protected
  • 2.0.0-alpha-11
  • 2.0.0-alpha-10
  • 2.0.0-alpha-9
  • 2.0.0-alpha-8
  • 2.0.0-alpha-7
  • 2.0.0-alpha-6
  • 2.0.0-alpha-5
  • 2.0.0-alpha-4
  • 2.0.0-alpha-3
  • 2.0.0-alpha-2
  • 2.0.0-alpha-1
  • 1.8.0
  • 1.7.0
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.5
  • 1.5.4
22 results

people.mustache

Blame
  • Forked from TO / Weby / ui-styleguide
    Source project has a limited visibility.
    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();