소스 검색

Improve manual binary test naming slightly

Daniel Gempesaw 10 년 전
부모
커밋
6ed37e8e79
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 4
      t/CanStartBinary.t

+ 3 - 4
t/CanStartBinary.t

@@ -32,15 +32,14 @@ PHANTOMJS: {
 }
 
 MANUAL: {
-    package ManualChrome {
+    package BadBinary {
         use Moo;
         with 'Selenium::CanStartBinary';
-        has 'binary' => ( is => 'ro' , default => '' );
-        has 'binary_port' => ( is => 'ro', default => 12345 );
+        has 'binary' => ( is => 'ro' );
         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');
 
   SKIP: {