aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/readline/history/to_s_spec.rb
blob: 30ba5a124980ed3f320d330d6083a0f79b6896f6 (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../spec_helper', __FILE__)

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