Sha256: e6c06d16f74ddbe289624200a27c9898b127989450979803067e8fafc250bf41

Contents?: true

Size: 389 Bytes

Versions: 4

Compression:

Stored size: 389 Bytes

Contents

require 'spec_helper'

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

        it "should not equal a match" do
          expect(PotentialMatch.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/potential_match_spec.rb
ruby_speech-3.0.1 spec/ruby_speech/grxml/potential_match_spec.rb
ruby_speech-3.0.0-java spec/ruby_speech/grxml/potential_match_spec.rb
ruby_speech-3.0.0 spec/ruby_speech/grxml/potential_match_spec.rb