Sha256: a5f799f86675213a0bb039e851f59c676503399751da3b82f4873e084a77691b

Contents?: true

Size: 360 Bytes

Versions: 5

Compression:

Stored size: 360 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

RSpec.describe TestApp::Literal do

  describe '#command' do
    subject { object.command(double) }

    let(:object) { described_class.new }

    it { should be(object) }
  end

  describe '#string' do
    subject { object.string }

    let(:object) { described_class.new }

    it { should eql('string') }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mutant-0.8.3 test_app/spec/unit/test_app/literal_spec.rb
mutant-0.8.2 test_app/spec/unit/test_app/literal_spec.rb
mutant-0.8.1 test_app/spec/unit/test_app/literal_spec.rb
mutant-0.8.0 test_app/spec/unit/test_app/literal_spec.rb
mutant-0.7.9 test_app/spec/unit/test_app/literal_spec.rb