-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial implementation of Random#bytes
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class Random | ||
def bytes(n) | ||
n.times.map { rand(256).chr } .join | ||
end | ||
end |
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,4 @@ | ||
fails:Random#bytes returns a String | ||
fails:Random#bytes returns a String of the length given as argument | ||
fails:Random#bytes returns an ASCII-8BIT String | ||
fails:Random#bytes returns the same output for a given seed | ||
fails:Random#bytes returns the same numeric output for a given seed accross all implementations and platforms | ||
fails:Random#bytes returns the same numeric output for a given huge seed accross all implementations and platforms | ||
fails:Random#bytes returns a random binary String |