Sha256: b4a437f53803a19170b5fef592546390bef262b7155ddb70b6ecb3fd1dad838c
Contents?: true
Size: 408 Bytes
Versions: 30
Compression:
Stored size: 408 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator::Node::Literal, 'boolean' do context 'true literal' do let(:source) { 'true' } let(:mutations) do %w(nil false) end it_should_behave_like 'a mutator' end context 'false literal' do let(:source) { 'false' } let(:mutations) do %w(nil true) end it_should_behave_like 'a mutator' end end
Version data entries
30 entries across 30 versions & 1 rubygems