summaryrefslogtreecommitdiff
path: root/spec/ruby/library/readline/filename_quote_characters_spec.rb
blob: abee5e97002a4c5f6c3d1129475c654d620a2ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../spec_helper', __FILE__)

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