require File.dirname(__FILE__) + '/../../spec_helper' process_is_foreground do not_supported_on :ironruby do require 'readline' 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 "set the character" do Readline.filename_quote_characters = "test" Readline.filename_quote_characters.should == "test" end end end end