blob: 16ca2fc54ed5f2b102e77f6fbf725c911386b66e (
plain)
1
2
3
4
5
6
7
8
9
10
|
use strict;
use warnings;
use Test::More tests => 2;
use_ok 'FixMyStreet::App';
is FixMyStreet::App->config->{GAZE_URL},
'https://gaze.mysociety.org/gaze',
"check that known config param is loaded";
|