Sha256: 2d3f93fda0c07ff5538dd3ef43f02330afb68135eeaf589d13c3448b2b65e011
Contents?: true
Size: 527 Bytes
Versions: 2
Compression:
Stored size: 527 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.rc3 | spec/unit/mutant/mutator/node/literal/float_spec.rb |
mutant-0.3.0.rc2 | spec/unit/mutant/mutator/node/literal/float_spec.rb |