Browse Source

Improve manual binary test naming slightly

Daniel Gempesaw 10 years ago
parent
commit
6ed37e8e79
1 changed files with 3 additions and 4 deletions
  1. 3 4
      t/CanStartBinary.t

+ 3 - 4
t/CanStartBinary.t

@@ -32,15 +32,14 @@ PHANTOMJS: {
 }
 }
 
 
 MANUAL: {
 MANUAL: {
-    package ManualChrome {
+    package BadBinary {
         use Moo;
         use Moo;
         with 'Selenium::CanStartBinary';
         with 'Selenium::CanStartBinary';
-        has 'binary' => ( is => 'ro' , default => '' );
-        has 'binary_port' => ( is => 'ro', default => 12345 );
+        has 'binary' => ( is => 'ro' );
         1
         1
     };
     };
 
 
-    ok( exception { ManualChrome->new( binary => '/not/executable') },
+    ok( exception { BadBinary->new( binary => '/not/executable') },
         'we throw if the user specified binary is not executable');
         'we throw if the user specified binary is not executable');
 
 
   SKIP: {
   SKIP: {