-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Truffle] Untag passing stringio specs.
- Loading branch information
Showing
9 changed files
with
0 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters