Exemple #1
0
 public function testThemeRegistration()
 {
     $stylist = new Stylist(new Loader(), $this->app);
     $theme = new Theme('n', 'd', 'path');
     $stylist->register($theme, true);
     $this->assertEquals($stylist->get('n'), $theme);
     $this->assertEquals($stylist->current(), $theme);
 }