spec/ranks/google/checksum_spec.rb in PageRankr-4.4.1 vs spec/ranks/google/checksum_spec.rb in PageRankr-4.6.0
- old
+ new
@@ -58,10 +58,10 @@
describe PageRankr::Ranks::Google::Checksum do
describe "#generate" do
SAMPLES.each do |input, output|
it "should generate #{output} as a checksum for #{input}" do
- PageRankr::Ranks::Google::Checksum.generate(input).should == output
+ expect(PageRankr::Ranks::Google::Checksum.generate(input)).to eq(output)
end
end
end
-end
\ No newline at end of file
+end