Sha256: efc950878bd11f9a4e5c8674cc4e57d1f9595230ff50646e6add86d37d07d320
Contents?: true
Size: 503 Bytes
Versions: 26
Compression:
Stored size: 503 Bytes
Contents
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
26 entries across 26 versions & 1 rubygems