Skip to content

Commit

Permalink
[Truffle] Untag passing stringio specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjfish committed May 27, 2015
1 parent 3c7acb8 commit 977ed9b
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 38 deletions.
2 changes: 0 additions & 2 deletions spec/truffle/tags/library/stringio/append_tags.txt

This file was deleted.

13 changes: 0 additions & 13 deletions spec/truffle/tags/library/stringio/gets_tags.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
fails:StringIO#gets when passed [separator] returns the data read till the next occurence of the passed separator
fails:StringIO#gets when passed [separator] sets $_ to the read content
fails:StringIO#gets when passed [separator] accepts string as separator
fails:StringIO#gets when passed [separator] returns the next paragraph when the passed separator is an empty String
fails:StringIO#gets when passed [separator] returns the remaining content starting at the current position when passed nil
fails:StringIO#gets when passed [separator] tries to convert the passed separator to a String using #to_str
fails:StringIO#gets when passed no argument returns the data read till the next occurence of $/ or till eof
fails:StringIO#gets when passed no argument sets $_ to the read content
fails:StringIO#gets when passed no argument returns nil if self is at the end
fails:StringIO#gets when passed [limit] returns the data read until the limit is met
fails:StringIO#gets when passed [limit] sets $_ to the read content
fails:StringIO#gets when passed [limit] tries to convert the passed limit to an Integer using #to_int
fails:StringIO#gets when passed [limit] returns a blank string when passed a limit of 0
fails:StringIO#gets when passed [separator] and [limit] returns the data read until the limit is consumed or the separator is met
fails:StringIO#gets when passed [separator] and [limit] sets $_ to the read content
fails:StringIO#gets when passed [separator] and [limit] tries to convert the passed separator to a String using #to_str
fails:StringIO#gets when passed [separator] and [limit] does not raise TypeError if passed separator is nil
fails:StringIO#gets when passed [separator] and [limit] tries to convert the passed limit to an Integer using #to_int
fails:StringIO#gets when passed [separator] and [limit] returns a String when both separator and limit are nil
1 change: 0 additions & 1 deletion spec/truffle/tags/library/stringio/lineno_tags.txt

This file was deleted.

6 changes: 0 additions & 6 deletions spec/truffle/tags/library/stringio/print_tags.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
fails:StringIO#print prints $_ when passed no arguments
fails:StringIO#print prints the passed arguments to self
fails:StringIO#print tries to convert the passed Object to a String using #to_s
fails:StringIO#print pads self with \000 when the current position is after the end
fails:StringIO#print updates the current position
fails:StringIO#print when in append mode appends the passed argument to the end of self
fails:StringIO#print when in append mode correctly updates self's position
1 change: 0 additions & 1 deletion spec/truffle/tags/library/stringio/printf_tags.txt

This file was deleted.

5 changes: 0 additions & 5 deletions spec/truffle/tags/library/stringio/readline_tags.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
fails:StringIO#readline when passed [separator] returns the data read till the next occurence of the passed separator
fails:StringIO#readline when passed [separator] sets $_ to the read content
fails:StringIO#readline when passed [separator] returns the next paragraph when the passed separator is an empty String
fails:StringIO#readline when passed [separator] returns the remaining content starting at the current position when passed nil
fails:StringIO#readline when passed [separator] tries to convert the passed separator to a String using #to_str
fails:StringIO#readline when passed no argument returns the data read till the next occurence of $/ or till eof
fails:StringIO#readline when passed no argument sets $_ to the read content
8 changes: 0 additions & 8 deletions spec/truffle/tags/library/stringio/seek_tags.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
fails:StringIO#seek seeks from the current position when whence is IO::SEEK_CUR
fails:StringIO#seek seeks from the end of self when whence is IO::SEEK_END
fails:StringIO#seek seeks to an absolute position when whence is IO::SEEK_SET
fails:StringIO#seek raises an Errno::EINVAL error on negative amounts when whence is IO::SEEK_SET
fails:StringIO#seek raises an Errno::EINVAL error on incorrect whence argument
fails:StringIO#seek tries to convert the passed Object to a String using #to_int
fails:StringIO#seek raises a TypeError when the passed Object can't be converted to an Integer
fails:StringIO#seek when self is closed does not raise an IOError
fails:StringIO#seek when self is closed raises an IOError
1 change: 0 additions & 1 deletion spec/truffle/tags/library/stringio/string_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/library/stringio/sysread_tags.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ fails:StringIO#sysread when passed length, buffer returns a String in ASCII-8BIT
fails:StringIO#sysread when passed length returns a String in ASCII-8BIT encoding when passed a length > 0
fails:StringIO#sysread when passed length returns an empty String in ASCII-8BIT encoding when passed length == 0
fails:StringIO#sysread when passed length raises an EOFError when passed 0 and no data remains
fails:StringIO#sysread when passed [length] returns a binary String

0 comments on commit 977ed9b

Please sign in to comment.