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

with_feature :readline do
  describe "Readline::HISTORY" do
    it "is extended with the Enumerable module" do
      Readline::HISTORY.should be_kind_of(Enumerable)
    end
  end
end