Codeception\Module\WPLoaderTest::it_should_switch_theme_to_just_stylesheet_if_no_template PHP Method

it_should_switch_theme_to_just_stylesheet_if_no_template() public method

    public function it_should_switch_theme_to_just_stylesheet_if_no_template()
    {
        $this->config['theme'] = 'foo';
        $this->wp->switch_theme('foo')->shouldBeCalled();
        $this->wp->WP_CONTENT_DIR()->willReturn('');
        $this->wp->do_action('after_switch_theme', 'foo')->shouldBeCalled();
        $sut = $this->make_instance();
        $sut->_switch_theme();
    }