update git repo url
[p5sagit/Config-Any.git] / t / lib / Config / Any / Unsupported.pm
1 package Config::Any::Unsupported;
2
3 use strict;
4 use warnings;
5
6 use base 'Config::Any::Base';
7
8 sub extensions {
9     return qw( unsupported );
10 }
11
12 sub load {
13 }
14
15 sub requires_all_of { 'My::Module::DoesNotExist' }
16
17 1;