From 217290d37eaa23337d2c7b9559fb1ce595ba8ad9 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sat, 5 Oct 2024 12:37:22 +1300 Subject: [PATCH] RuboCop. --- test/io/event/selector/fifo_io.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/io/event/selector/fifo_io.rb b/test/io/event/selector/fifo_io.rb index 2bf3bdc..4bc11ce 100644 --- a/test/io/event/selector/fifo_io.rb +++ b/test/io/event/selector/fifo_io.rb @@ -3,13 +3,13 @@ # Released under the MIT License. # Copyright, 2021-2023, by Samuel Williams. -require 'io/event' -require 'io/event/selector' -require 'fileutils' -require 'tmpdir' +require "io/event" +require "io/event/selector" +require "fileutils" +require "tmpdir" FifoIO = Sus::Shared("fifo io") do - with 'a fifo' do + with "a fifo" do def around(&block) @root = Dir.mktmpdir super @@ -19,7 +19,7 @@ def around(&block) let(:path) {File.join(@root, "fifo")} - it 'can read and write' do + it "can read and write" do skip_if_ruby_platform(/mswin|mingw|cygwin/) File.mkfifo(path)