mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
259 B
Ruby
12 lines
259 B
Ruby
|
require File.expand_path('../spec_helper', __FILE__)
|
||
|
|
||
|
platform_is_not :darwin do
|
||
|
with_feature :readline do
|
||
|
describe "Readline.emacs_editing_mode" do
|
||
|
it "returns nil" do
|
||
|
Readline.emacs_editing_mode.should be_nil
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|