@@ -28,34 +28,34 @@ public function testNamespaceFor()
2828 {
2929 $ mock = $ this ->createProject ();
3030 $ ns = $ mock ->namespace ('app/Model ' );
31- $ this ->assertEquals ('App \\ Model \\' , $ ns );
31+ $ this ->assertEquals ('App\Model \\' , $ ns );
3232 }
3333
3434 public function testClassNameFor ()
3535 {
3636 $ mock = $ this ->createProject ();
3737 $ ns = $ mock ->className ('app/Model/User.php ' );
38- $ this ->assertEquals ('App \\ Model \ \User ' , $ ns );
38+ $ this ->assertEquals ('App\Model\User ' , $ ns );
3939 }
4040
4141 public function testPathForClass ()
4242 {
4343 $ mock = $ this ->createProject ();
44- $ path = $ mock ->path ('App \\ Model \ \Foo ' );
44+ $ path = $ mock ->path ('App\Model\Foo ' );
4545 $ this ->assertEquals ('app/Model/Foo.php ' , $ path );
4646 }
4747
4848 public function testPathForNamespace ()
4949 {
5050 $ mock = $ this ->createProject ();
51- $ path = $ mock ->path ('App \\ Model \\' );
51+ $ path = $ mock ->path ('App\Model \\' );
5252 $ this ->assertEquals ('app/Model/ ' , $ path );
5353 }
5454
5555 public function testPathForNoExtension ()
5656 {
5757 $ mock = $ this ->createProject ();
58- $ path = $ mock ->path ('App \\ Model ' , '' );
58+ $ path = $ mock ->path ('App\Model ' , '' );
5959 $ this ->assertEquals ('app/Model ' , $ path );
6060 }
6161
0 commit comments