Sha256: 785749fc4664677dddadb40b622c4eb1632d53df6c89c6cad361664698cdf80d
Contents?: true
Size: 583 Bytes
Versions: 25
Compression:
Stored size: 583 Bytes
Contents
# encoding: utf-8 # This file is the sandbox for new mutations. # Once finished mutation test will be moved to class specfic # file. require 'spec_helper' describe Mutant::Mutator do describe '.each' do pending 'interpolated string literal (DynamicString)' do let(:source) { '"foo#{1}bar"' } let(:random_string) { 'this-is-random' } let(:mutations) do mutations = [] mutations << 'nil' end before do Mutant::Random.stub(hex_string: random_string) end it_should_behave_like 'a mutator' end end end
Version data entries
25 entries across 25 versions & 1 rubygems