@@ -50,7 +50,7 @@ public function it_supports_vendor_not_included()
50
50
{
51
51
$ mock = $ this ->getMockPackage ('name ' );
52
52
53
- $ this ->assertEquals ('themes/Name ' , $ this ->test ->getInstallPath ($ mock ));
53
+ $ this ->assertEquals ('themes/name ' , $ this ->test ->getInstallPath ($ mock ));
54
54
}
55
55
56
56
/**
@@ -59,7 +59,7 @@ public function it_supports_vendor_not_included()
59
59
public function it_returns_themes_folder_by_default ()
60
60
{
61
61
$ mock = $ this ->getMockPackage ('vendor/name-theme ' );
62
- $ this ->assertEquals ('themes/Name ' , $ this ->test ->getInstallPath ($ mock ));
62
+ $ this ->assertEquals ('themes/vendor/name ' , $ this ->test ->getInstallPath ($ mock ));
63
63
}
64
64
65
65
/**
@@ -69,7 +69,7 @@ public function it_can_use_compound_theme_names()
69
69
{
70
70
$ mock = $ this ->getMockPackage ('vendor/compound-name-theme ' );
71
71
72
- $ this ->assertEquals ('themes/CompoundName ' , $ this ->test ->getInstallPath ($ mock ));
72
+ $ this ->assertEquals ('themes/vendor/compound-name ' , $ this ->test ->getInstallPath ($ mock ));
73
73
}
74
74
75
75
/**
@@ -87,10 +87,10 @@ public function it_can_use_custom_path()
87
87
$ package = $ this ->getMockPackage ('vendor/name-theme ' );
88
88
89
89
$ this ->composer ->shouldReceive ('getExtra ' )
90
- ->andReturn (['theme-dir ' => 'Custom ' ])
90
+ ->andReturn (['theme-dir ' => 'custom ' ])
91
91
->getMock ();
92
92
93
- $ this ->assertEquals ('Custom/Name ' , $ this ->test ->getInstallPath ($ package ));
93
+ $ this ->assertEquals ('custom/vendor/name ' , $ this ->test ->getInstallPath ($ package ));
94
94
}
95
95
96
96
0 commit comments