File: test_pipe_read_write.rb

package info (click to toggle)
ruby-kgio 2.11.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: ruby: 2,790; ansic: 2,020; sh: 32; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
require './test/lib_read_write.rb'

class TestKgioPipe < Test::Unit::TestCase
  def setup
    @rd, @wr = Kgio::Pipe.new
  end

  include LibReadWriteTest
end