blob: 97bbccc0134abf6fddd40c4298e935ab5c5e155b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
use strict;
use warnings;
use Test::More;
use FixMyStreet;
use FixMyStreet::Cobrand;
my @cobrands = (
[ hart => 2333 ],
[ oxfordshire => 2237 ],
[ stevenage => 2347 ],
[ warwickshire => 2243 ],
);
FixMyStreet::override_config {
ALLOWED_COBRANDS => [ map $_->[0], @cobrands ],
}, sub {
for my $c (@cobrands) {
my ($m, $id) = @$c;
my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker($m);
my $council_id = $cobrand->council_id;
is $council_id, $id, "council_id for $m";
}
};
done_testing;
|