public function test_enqueue_wizard_script_gets_launchkey_site_option_when_multi_site()
 {
     $wizard = new LaunchKey_WP_Configuration_Wizard($this->facade, $this->admin, true, $this->client);
     $wizard->enqueue_wizard_script();
     Phake::verify($this->facade)->get_site_option(LaunchKey_WP_Admin::OPTION_KEY);
 }
 public function test_enqueue_wizard_script_uses_same_slug_for_enqueueing_and_localizing()
 {
     $this->wizard->enqueue_wizard_script();
     Phake::verify($this->facade)->wp_enqueue_script('launchkey-wizard-script', $this->anything(), $this->anything(), $this->anything(), $this->anything());
     Phake::verify($this->facade)->wp_localize_script('launchkey-wizard-script', $this->anything(), $this->anything());
 }