Sha256: ca1b9ce30e4fafbdae2f701f01250b25691b3f5fbaa5f675668efaa540b3f453
Contents?: true
Size: 889 Bytes
Versions: 29
Compression:
Stored size: 889 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator, 'super' do context 'with no arguments' do let(:source) { 'super' } let(:mutations) do mutations = [] mutations << 'nil' end it_should_behave_like 'a mutator' end context 'with explicit empty arguments' do let(:source) { 'super()' } let(:mutations) do mutations = [] mutations << 'super' mutations << 'nil' end it_should_behave_like 'a mutator' end context 'super with arguments' do let(:source) { 'super(foo, bar)' } let(:mutations) do mutations = [] mutations << 'super' mutations << 'super()' mutations << 'super(foo)' mutations << 'super(bar)' mutations << 'super(foo, nil)' mutations << 'super(nil, bar)' mutations << 'nil' end it_should_behave_like 'a mutator' end end
Version data entries
29 entries across 29 versions & 1 rubygems