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

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