Sha256: 66b764eca0ed01d81b965ef48ae5b15eb99b5ea100e3af25a2db8123a52c3618
Contents?: true
Size: 491 Bytes
Versions: 24
Compression:
Stored size: 491 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator::Node::Dsym, 'dsym' do before do Mutant::Random.stub(hex_string: 'random') end let(:source) { ':"foo#{bar}baz"' } let(:mutations) do mutations = [] mutations << ':"random#{bar}baz"' mutations << ':"#{nil}#{bar}baz"' mutations << ':"foo#{bar}random"' mutations << ':"foo#{bar}#{nil}"' mutations << ':"foo#{nil}baz"' mutations << 'nil' end it_should_behave_like 'a mutator' end
Version data entries
24 entries across 24 versions & 1 rubygems