Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | public function testOptions() |
||
11 | { |
||
12 | $processor = new Processor(); |
||
13 | |||
14 | $config = $processor->processConfiguration(new Configuration(), array(array( |
||
15 | 'title' => 'Foo title', |
||
16 | 'link' => '/foo/bar', |
||
17 | 'description' => 'Foo description', |
||
18 | 'salt' => 'pepper', |
||
19 | ))); |
||
20 | |||
21 | $this->assertSame('news__post_tag', $config['table']['post_tag']); |
||
22 | } |
||
23 | } |
||
24 |