summaryrefslogtreecommitdiff
path: root/spec/ruby/core/regexp/casefold_spec.rb
blob: d36467a9897ca42d49a2fff9a63c5e9b90bccf26 (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'

describe "Regexp#casefold?" do
  it "returns the value of the case-insensitive flag" do
    /abc/i.should.casefold?
    /xyz/.should_not.casefold?
  end
end