2017-05-07 12:04:49 +00:00
|
|
|
describe :random_urandom, shared: true do
|
|
|
|
it "returns a String" do
|
|
|
|
Random.send(@method, 1).should be_an_instance_of(String)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a String of the length given as argument" do
|
|
|
|
Random.send(@method, 15).length.should == 15
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an ArgumentError on a negative size" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-05-07 12:04:49 +00:00
|
|
|
Random.send(@method, -1)
|
|
|
|
}.should raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
|
2019-06-27 21:21:33 +02:00
|
|
|
it "returns a binary String" do
|
2019-06-27 21:02:36 +02:00
|
|
|
Random.send(@method, 15).encoding.should == Encoding::BINARY
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a random binary String" do
|
|
|
|
Random.send(@method, 12).should_not == Random.send(@method, 12)
|
|
|
|
end
|
|
|
|
end
|