Sha256: d6ab160ecd8ea04d5b75fc8aeead3fa7b14d60abf32394a7cda44a1673c984d2

Contents?: true

Size: 354 Bytes

Versions: 4

Compression:

Stored size: 354 Bytes

Contents

require 'spec_helper'

module RubySpeech
  module GRXML
    describe NoMatch do
      describe "equality" do
        it "should be equal to another NoMatch" do
          expect(NoMatch.new).to eq(NoMatch.new)
        end

        it "should not equal a match" do
          expect(NoMatch.new).not_to eq(Match.new)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby_speech-3.0.1-java spec/ruby_speech/grxml/no_match_spec.rb
ruby_speech-3.0.1 spec/ruby_speech/grxml/no_match_spec.rb
ruby_speech-3.0.0-java spec/ruby_speech/grxml/no_match_spec.rb
ruby_speech-3.0.0 spec/ruby_speech/grxml/no_match_spec.rb