1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/readline/filename_quote_characters_spec.rb

19 lines
476 B
Ruby
Raw Normal View History

require_relative 'spec_helper'
platform_is_not :darwin do
with_feature :readline do
describe "Readline.filename_quote_characters" do
it "returns nil" do
Readline.filename_quote_characters.should be_nil
end
end
describe "Readline.filename_quote_characters=" do
it "returns the passed string" do
Readline.filename_quote_characters = "test"
Readline.filename_quote_characters.should == "test"
end
end
end
end