Sha256: 5ef907801dae1428a9e5a435ff53ba45250f23b546836695391d1a93e2a727e7
Contents?: true
Size: 379 Bytes
Versions: 27
Compression:
Stored size: 379 Bytes
Contents
require 'spec_helper' module RubySpeech module GRXML describe PotentialMatch do describe "equality" do it "should be equal to another PotentialMatch" do PotentialMatch.new.should == PotentialMatch.new end it "should not equal a match" do PotentialMatch.new.should_not == Match.new end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems