Sha256: 839be017331598272592768bf0be193aa383094ab32f9061af2ff4f9008f8916

Contents?: true

Size: 293 Bytes

Versions: 4

Compression:

Stored size: 293 Bytes

Contents

require 'spec_helper'

module RubySpeech
  module GRXML
    describe Match do
      it_behaves_like "match"

      describe "equality" do
        it "should never be equal to a MaxMatch" do
          expect(described_class.new).not_to eql(MaxMatch.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/match_spec.rb
ruby_speech-3.0.1 spec/ruby_speech/grxml/match_spec.rb
ruby_speech-3.0.0-java spec/ruby_speech/grxml/match_spec.rb
ruby_speech-3.0.0 spec/ruby_speech/grxml/match_spec.rb