Sha256: b3a8362eddab329260f0f5b93548c4dc37b782e764067edc9e0427134326ee28
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator, 'block' do context 'with block' do let(:source) { 'foo() { a; b }' } let(:mutations) do mutations = [] mutations << 'foo { a }' mutations << 'foo { b }' mutations << 'foo {}' mutations << 'foo { raise }' mutations << 'foo' end it_should_behave_like 'a mutator' end context 'with block args' do let(:source) { 'foo { |a, b| }' } before do Mutant::Random.stub(:hex_string => 'random') end let(:mutations) do mutations = [] mutations << 'foo' mutations << 'foo { |a, b| raise }' mutations << 'foo { |a, srandom| }' mutations << 'foo { |srandom, b| }' mutations << 'foo { |a| }' mutations << 'foo { |b| }' mutations << 'foo { || }' end it_should_behave_like 'a mutator' end context 'with block pattern args' do before do Mutant::Random.stub(:hex_string => 'random') end let(:source) { 'foo { |(a, b), c| }' } let(:mutations) do mutations = [] mutations << 'foo { || }' mutations << 'foo { |a, b, c| }' mutations << 'foo { |(a, b), c| raise }' mutations << 'foo { |(a), c| }' mutations << 'foo { |(b), c| }' mutations << 'foo { |(a, b)| }' mutations << 'foo { |c| }' mutations << 'foo { |(srandom, b), c| }' mutations << 'foo { |(a, srandom), c| }' mutations << 'foo { |(a, b), srandom| }' mutations << 'foo' end it_should_behave_like 'a mutator' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.3.0.rc1 | spec/unit/mutant/mutator/node/block/mutation_spec.rb |
mutant-0.3.0.beta22 | spec/unit/mutant/mutator/node/block/mutation_spec.rb |