blob: f0684d4cbcad8fbf4586caf4137f0f8ae9bafb44 (
plain)
1
2
3
4
5
6
7
|
require_relative '../../../spec_helper'
describe "String#unpack with format '%'" do
it "raises an Argument Error" do
lambda { "abc".unpack("%") }.should raise_error(ArgumentError)
end
end
|