aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/multiply_spec.rb
blob: d932ebeb8ef9120f6d31294e81209f3049d8c7ee (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes.rb', __FILE__)
require File.expand_path('../../../shared/string/times', __FILE__)

describe "String#*" do
  it_behaves_like :string_times, :*, ->(str, times) { str * times }
end