summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/internal_encoding_spec.rb
blob: 2035cf25a908d2f39b1553a70fab359b6c310a6d (plain)
1
2
3
4
5
6
7
8
9
10
require 'stringio'
require_relative '../../spec_helper'

describe "StringIO#internal_encoding" do
  it "returns nil" do
    io = StringIO.new
    io.set_encoding Encoding::UTF_8
    io.internal_encoding.should == nil
  end
end
6f74d'>YJIT: Add RubyVM::YJIT.enable (#8705)Takashi Kokubun 2023-10-18YJIT: Add --yjit-perf (#8697)Takashi Kokubun 2023-10-17YJIT: Lookup IDs on boot instead of binding to themAlan Wu 2023-10-12YJIT: port call threshold logic from Rust to C for performance (#8628)Maxime Chevalier-Boisvert 2023-10-03YJIT: add heuristic to avoid compiling cold ISEQs (#8522)Maxime Chevalier-Boisvert 2023-09-14YJIT: Plug native stack overflowAlan Wu 2023-09-12YJIT: Add compilation time counter (#8417)Takashi Kokubun 2023-08-08YJIT: Compile exception handlers (#8171)Takashi Kokubun 2023-07-17YJIT: refactoring to allow for fancier call threshold logic (#8078)Maxime Chevalier-Boisvert 2023-05-30YJIT: Force showing a backtrace on panic (#7869)Takashi Kokubun 2023-03-29YJIT: Take VM lock in RubyVM::YJIT.code_gcAlan Wu 2023-03-29YJIT: Fix overlapping &mut in Assembler::code_gc()Alan Wu 2023-03-28YJIT: Add `--yjit-pause` and `RubyVM::YJIT.resume` (#7609)Maxime Chevalier-Boisvert 2023-03-01YJIT: reject large stacks so we can use i8/u8 stack_size and stack_offset (#7...Maxime Chevalier-Boisvert 2023-02-02Fix typos in YJIT [ci skip]Alan Wu 2023-02-02YJIT: Crash with rb_bug() when panickingAlan Wu 2022-10-31YJIT: Add RubyVM::YJIT.code_gc (#6644)Takashi Kokubun 2022-08-29Fix code invalidation while OOM and OOM simulation (https://github.com/Shopif...Alan Wu 2022-08-19Rename mjit_exec to jit_exec (#6262)Takashi Kokubun 2022-06-09Add ability to trace exit locations in yjit (#5970)Eileen M. Uchitelle 2022-04-29YJIT: Enable default rustc lints (warnings) (#5864)Alan Wu 2022-04-27Rust YJITAlan Wu