Sha256: 509a8e8c6a403e2c7614db31828e9b5142e97d62f1f6387da5352e43d4868857
Contents?: true
Size: 456 Bytes
Versions: 1
Compression:
Stored size: 456 Bytes
Contents
require 'spec_helper' describe Highrise::Recording do it { should be_a_kind_of Highrise::Base } it_should_behave_like "a paginated class" it ".find_all_across_pages_since" do time = Time.parse("Wed Jan 14 15:43:11 -0200 2009") Highrise::Recording.should_receive(:find_all_across_pages).with({:params=>{:since=>"20090114174311"}}).and_return("result") Highrise::Recording.find_all_across_pages_since(time).should == "result" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
highrise-3.0.0 | spec/highrise/recording_spec.rb |