summaryrefslogtreecommitdiff
path: root/spec/ruby/library/readline/history/to_s_spec.rb
blob: ee338f2ab4edcf9e2a9d12836b9fe1c26198614c (plain)
1
2
3
4
5
6
7
8
9
require_relative '../spec_helper'

with_feature :readline do
  describe "Readline::HISTORY.to_s" do
    it "returns 'HISTORY'" do
      Readline::HISTORY.to_s.should == "HISTORY"
    end
  end
end