Sha256: 16e85879aa56d9fac3a8dda383fb524bef07c6c62041ed2accd663bdc4be1bdf
Contents?: true
Size: 530 Bytes
Versions: 2
Compression:
Stored size: 530 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator::Node::Literal, 'float' do let(:source) { '10.0' } let(:mutations) do mutations = [] mutations << 'nil' mutations << '0.0' mutations << '1.0' mutations << random_float.to_s mutations << '(0.0 / 0.0)' mutations << '(1.0 / 0.0)' mutations << '(-1.0 / 0.0)' mutations << '-10.0' end let(:random_float) { 7.123 } before do Mutant::Random.stub(:float => random_float) end it_should_behave_like 'a mutator' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.3.0.rc1 | spec/unit/mutant/mutator/node/literal/float_spec.rb |
mutant-0.3.0.beta22 | spec/unit/mutant/mutator/node/literal/float_spec.rb |