1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2020-11-27 15:47:17 +01:00
parent f02d2f82bf
commit ddb1736bfc

View file

@ -37,7 +37,7 @@ describe "Kernel#`" do
platform_is_not :windows do platform_is_not :windows do
it "handles invalid UTF-8 bytes in command" do it "handles invalid UTF-8 bytes in command" do
`echo "testing\xC2 a non UTF-8 string"`.should == "testing\xC2 a non UTF-8 string\n" `echo "testing\xC2 a non UTF-8 string"`.b.should == "testing\xC2 a non UTF-8 string\n".b
end end
it "sets $? to the exit status of the executed sub-process" do it "sets $? to the exit status of the executed sub-process" do