forked from topazproject/topaz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request topazproject#549 from modcloth/mbh/IO#puts-Kernel#…
…puts Moving IO#puts into lib-topaz (untag specs)
- Loading branch information
Showing
4 changed files
with
14 additions
and
30 deletions.
There are no files selected for viewing
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
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,13 +1,2 @@ | ||
fails:IO#puts writes just a newline when given no args | ||
fails:IO#puts writes just a newline when given just a newline | ||
fails:IO#puts writes empty string with a newline when given nil as an arg | ||
fails:IO#puts writes empty string with a newline when when given nil as multiple args | ||
fails:IO#puts calls to_s before writing non-string objects | ||
fails:IO#puts writes each arg if given several | ||
fails:IO#puts flattens a nested array before writing it | ||
fails:IO#puts writes nothing for an empty array | ||
fails:IO#puts writes [...] for a recursive array arg | ||
fails:IO#puts writes a newline after objects that do not end in newlines | ||
fails:IO#puts does not write a newline after objects that end in newlines | ||
fails:IO#puts ignores the $/ separator global | ||
fails:IO#puts raises IOError on closed stream |
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,10 +1,2 @@ | ||
fails:Kernel#puts is a private method | ||
fails:Kernel#puts writes just a newline when given no args | ||
fails:Kernel#puts writes a newline when given nil as an arg | ||
fails:Kernel#puts calls to_s before writing non-string objects | ||
fails:Kernel#puts writes each arg if given several | ||
fails:Kernel#puts flattens a nested array before writing it | ||
fails:Kernel#puts writes [...] for a recursive array arg | ||
fails:Kernel#puts writes a newline after objects that do not end in newlines | ||
fails:Kernel#puts does not write a newline after objects that end in newlines | ||
fails:Kernel#puts ignores the $/ separator global |
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