File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1717# specific language governing permissions and limitations
1818# under the License.
1919
20- require File . expand_path ( '../ spec_helper', __dir__ )
20+ require_relative ' spec_helper'
2121
2222module Selenium
2323 module WebDriver
24- describe ChildProcess do
25- it 'does not raise an error when terminating a non-existent process' ,
26- except : [ { platform : :windows , reason : 'This is only for Unix platforms' } ] do
24+ describe ChildProcess , except : [ { platform : :windows , reason : 'This is only for Unix platforms' } ] do
25+ it 'does not raise an error when terminating a non-existent process' do
2726 process = described_class . new ( 'sleep' , '5' )
2827 process . start
2928
@@ -36,8 +35,7 @@ module WebDriver
3635 } . not_to raise_error
3736 end
3837
39- it 'does not raise an error when killing a non-existent process' ,
40- except : [ { platform : :windows , reason : 'This is only for Unix platforms' } ] do
38+ it 'does not raise an error when killing a non-existent process' do
4139 process = described_class . new ( 'sleep' , '5' )
4240 process . start
4341
You can’t perform that action at this time.
0 commit comments