GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( dfa34c...d2a3b2 )
by Craig
02:52
created

TabsTest::testAsterisk()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 34
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 34
rs 8.8571
c 1
b 0
f 0
cc 1
eloc 9
nc 1
nop 0
1
<?php
2
3
namespace Mopa\Bundle\BootstrapBundle\Tests\Form;
4
5
class TabsTest extends AbstractDivLayoutTest
6
{
7
    public function testAsterisk()
8
    {
9
        $form = $this->factory->createNamedBuilder('form', $this->getFormType('form'));
10
        $tab = $form->create('tab1', $this->getFormType('tab'));
11
        $tab->add('test1', $this->getFormType('text'));
12
        $form->add($tab);
13
14
        $view = $form->getForm()->createView();
15
        $html = $this->renderWidget($view);
16
17
        $this->assertMatchesXpath($this->removeBreaks($html),
18
'
19
/fieldset
20
[
21
    (
22
        ./ul[@class="tabs nav-tabs"]
23
        [
24
            ./li[@class="active"]
25
            [
26
                ./a[@data-toggle="tab"]
27
            ]
28
        ]
29
    )
30
    and
31
    (
32
        ./div[@class="tab-content"]
33
        [
34
            ./div[@class="tab-pane active"]
35
        ]
36
    )
37
]
38
'
39
        );
40
    }
41
}
42