Skip to content

Commit

Permalink
Showing 12 changed files with 0 additions and 45 deletions.
1 change: 0 additions & 1 deletion spec/truffle/tags/core/io/bytes_tags.txt

This file was deleted.

2 changes: 0 additions & 2 deletions spec/truffle/tags/core/io/chars_tags.txt

This file was deleted.

3 changes: 0 additions & 3 deletions spec/truffle/tags/core/io/codepoints_tags.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
fails:IO#codepoints yields each codepoint
fails:IO#codepoints raises an error if reading invalid sequence
fails:IO#codepoints does not change $_
fails:IO#codepoints calls the given block
18 changes: 0 additions & 18 deletions spec/truffle/tags/core/io/copy_stream_tags.txt
Original file line number Diff line number Diff line change
@@ -1,43 +1,25 @@
fails:IO.copy_stream from an IO does not close the source IO
fails:IO.copy_stream from an IO does not change the IO offset when an offset is specified
fails:IO.copy_stream from an IO does change the IO offset when an offset is not specified
fails:IO.copy_stream from an IO to a file name copies the entire IO contents to the file
fails:IO.copy_stream from an IO to a file name returns the number of bytes copied
fails:IO.copy_stream from an IO to a file name copies only length bytes when specified
fails:IO.copy_stream from an IO to a file name calls #to_path to convert on object to a file name
fails:IO.copy_stream from an IO to a file name copies only length bytes from the offset
fails:IO.copy_stream from an IO to an IO copies the entire IO contents to the IO
fails:IO.copy_stream from an IO to an IO returns the number of bytes copied
fails:IO.copy_stream from an IO to an IO starts writing at the destination IO's current position
fails:IO.copy_stream from an IO to an IO leaves the destination IO position at the last write
fails:IO.copy_stream from an IO to an IO does not close the destination IO
fails:IO.copy_stream from an IO to an IO copies only length bytes when specified
fails:IO.copy_stream from an IO to an IO copies only length bytes from the offset
fails:IO.copy_stream from a file name calls #to_path to convert on object to a file name
fails:IO.copy_stream from a file name to a file name copies the entire IO contents to the file
fails:IO.copy_stream from a file name to a file name returns the number of bytes copied
fails:IO.copy_stream from a file name to a file name copies only length bytes when specified
fails:IO.copy_stream from a file name to a file name calls #to_path to convert on object to a file name
fails:IO.copy_stream from a file name to a file name copies only length bytes from the offset
fails:IO.copy_stream from a file name to an IO copies the entire IO contents to the IO
fails:IO.copy_stream from a file name to an IO returns the number of bytes copied
fails:IO.copy_stream from a file name to an IO starts writing at the destination IO's current position
fails:IO.copy_stream from a file name to an IO leaves the destination IO position at the last write
fails:IO.copy_stream from a file name to an IO does not close the destination IO
fails:IO.copy_stream from a file name to an IO copies only length bytes when specified
fails:IO.copy_stream from a file name to an IO copies only length bytes from the offset
fails:IO.copy_stream from a pipe IO does not close the source IO
fails:IO.copy_stream from a pipe IO raises an error when an offset is specified
fails:IO.copy_stream from a pipe IO to a file name copies the entire IO contents to the file
fails:IO.copy_stream from a pipe IO to a file name returns the number of bytes copied
fails:IO.copy_stream from a pipe IO to a file name copies only length bytes when specified
fails:IO.copy_stream from a pipe IO to a file name calls #to_path to convert on object to a file name
fails:IO.copy_stream from a pipe IO to an IO copies the entire IO contents to the IO
fails:IO.copy_stream from a pipe IO to an IO returns the number of bytes copied
fails:IO.copy_stream from a pipe IO to an IO starts writing at the destination IO's current position
fails:IO.copy_stream from a pipe IO to an IO leaves the destination IO position at the last write
fails:IO.copy_stream from a pipe IO to an IO does not close the destination IO
fails:IO.copy_stream from a pipe IO to an IO copies only length bytes when specified
fails:IO.copy_stream with non-IO Objects calls #readpartial on the source Object if defined
fails:IO.copy_stream with non-IO Objects calls #write on the destination Object
fails:IO.copy_stream with non-IO Objects does not call #pos on the source if no offset is given
2 changes: 0 additions & 2 deletions spec/truffle/tags/core/io/each_char_tags.txt

This file was deleted.

4 changes: 0 additions & 4 deletions spec/truffle/tags/core/io/each_codepoint_tags.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
fails:IO#each_codepoint yields each codepoint
fails:IO#each_codepoint raises an error if reading invalid sequence
fails:IO#each_codepoint does not change $_
fails:IO#each_codepoint calls the given block
fails:IO#each_codepoint returns self
1 change: 0 additions & 1 deletion spec/truffle/tags/core/io/getbyte_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/io/getc_tags.txt

This file was deleted.

2 changes: 0 additions & 2 deletions spec/truffle/tags/core/io/gets_tags.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
fails:IO#gets assigns the returned line to $_
fails:IO#gets reads limit bytes and extra bytes when limit is reached not at character boundary
fails:IO#gets read limit bytes and extra bytes with maximum of 16
fails:IO#gets transcodes to internal encoding if the IO object's external encoding is ASCII-8BIT
5 changes: 0 additions & 5 deletions spec/truffle/tags/core/io/read_nonblock_tags.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
fails:IO#read_nonblock raises EAGAIN when there is no data
fails:IO#read_nonblock raises IO::WaitReadable when there is no data
fails:IO#read_nonblock returns at most the number of bytes requested
fails:IO#read_nonblock returns less data if that is all that is available
fails:IO#read_nonblock allows for reading 0 bytes before any write
fails:IO#read_nonblock allows for reading 0 bytes after a write
fails:IO#read_nonblock raises EOFError when the end is reached
5 changes: 0 additions & 5 deletions spec/truffle/tags/core/io/read_tags.txt
Original file line number Diff line number Diff line change
@@ -2,10 +2,5 @@ fails:IO.read from a pipe runs the rest as a subprocess and returns the standard
fails:IO.read from a pipe opens a pipe to a fork if the rest is -
fails:IO.read from a pipe reads only the specified number of bytes requested
fails:IO.read from a pipe raises Errno::ESPIPE if passed an offset
fails:IO.read with BOM reads a file with a utf-8 bom
fails:IO.read with BOM reads a file with a utf-16le bom
fails:IO.read with BOM reads a file with a utf-16be bom
fails:IO.read with BOM reads a file with a utf-32le bom
fails:IO.read with BOM reads a file with a utf-32be bom
fails(windows):IO#read on Windows normalizes line endings in text mode
fails(windows):IO#read on Windows does not normalize line endings in binary mode
1 change: 0 additions & 1 deletion spec/truffle/tags/core/io/readpartial_tags.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
fails:IO#readpartial reads after ungetc with multibyte characters in the buffer
fails:IO#readpartial reads after ungetc without data in the buffer
fails:IO#readpartial discards the existing buffer content upon successful read
fails:IO#readpartial raises EOFError on EOF

0 comments on commit 4f02209

Please sign in to comment.