Sha256: 26839a472fdb17159189f12cb12a09352c1a49cfe7ab6880dae1eb3e59463569

Contents?: true

Size: 333 Bytes

Versions: 4

Compression:

Stored size: 333 Bytes

Contents

require 'spec_helper'

module RubySpeech
  module GRXML
    describe MaxMatch do
      it_behaves_like "match"

      it { is_expected.to be_a Match }

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