1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-03-04 15:09:32 +00:00
parent 8a15857a7f
commit 401b64c4e8
3689 changed files with 6095 additions and 6096 deletions

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
platform_is_not :darwin do
with_feature :readline do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.basic_word_break_characters" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.completer_quote_characters" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.completer_word_break_characters" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.completion_append_character" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.completion_case_fold" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.completion_proc" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
# Note: additional specs for HISTORY are in 'history' subdir.

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
platform_is_not :darwin do
with_feature :readline do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
platform_is_not :darwin do
with_feature :readline do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.<<" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.delete_at" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.each" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.[]" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.[]=" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.empty?" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY" do

View file

@ -1,7 +1,7 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
require File.expand_path('../shared/size', __FILE__)
require_relative 'shared/size'
describe "Readline::HISTORY.length" do
it_behaves_like :readline_history_size, :length

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.pop" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.push" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.shift" do

View file

@ -1,7 +1,7 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
require File.expand_path('../shared/size', __FILE__)
require_relative 'shared/size'
describe "Readline::HISTORY.size" do
it_behaves_like :readline_history_size, :size

View file

@ -1,4 +1,4 @@
require File.expand_path('../../spec_helper', __FILE__)
require_relative '../spec_helper'
with_feature :readline do
describe "Readline::HISTORY.to_s" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
with_feature :readline do
describe "Readline.readline" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
begin
require 'readline'

View file

@ -1,4 +1,4 @@
require File.expand_path('../spec_helper', __FILE__)
require_relative 'spec_helper'
platform_is_not :darwin do
with_feature :readline do