dtas.git  about / heads / tags
duct tape audio suite for *nix
blob f7e73852848e5af03ac76108d594a3551f325134 526 bytes (raw)
$ git show v0.18.0:test/test_sigevent.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
 
# Copyright (C) 2019-2020 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
require_relative 'helper'
require 'dtas'
require 'dtas/sigevent'

class TestSigevent < Testcase
  def test_sigevent
    io = DTAS::Sigevent.new
    io.signal
    assert IO.select([io]), 'IO.select returns'
    res = io.readable_iter do |f,arg|
      assert_same io, f
      assert_nil arg
    end
    assert_equal :wait_readable, res
    assert_nil io.close
  end
end

git clone git://80x24.org/dtas.git
git clone https://80x24.org/dtas.git