aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/load_general_config.t
blob: 3855c2565d8bcdbe2c2e0c71ef6143bcb0a2c89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl -w

use strict;
use warnings;

use Test::More tests => 2;

use_ok 'FixMyStreet::App';

# GAZE_URL chosen as it is unlikely to change
is FixMyStreet::App->config->{GAZE_URL},    #
  'http://gaze.mysociety.org/gaze',         #
  "check that known config param is loaded";