Sha256: de64da388b80619eeead289b2461675f5c7bb297427b453294deb9c82085f288
Contents?: true
Size: 650 Bytes
Versions: 24
Compression:
Stored size: 650 Bytes
Contents
require 'spec_helper' describe Heirloom do before do @config_mock = double 'config' @lister = Heirloom::Lister.new :config => @config_mock, :name => 'test123' end it "should list the known archive" do sdb_mock = mock 'sdb' @lister.should_receive(:sdb).and_return sdb_mock sdb_mock.should_receive(:select). with("select * from `heirloom_test123` where built_at > '2000-01-01T00:00:00.000Z' \ order by built_at desc limit 10"). and_return( {'1' => 'one', '2' => 'two', '3' => 'three'} ) @lister.list.should == ['1', '2', '3'] end end
Version data entries
24 entries across 24 versions & 1 rubygems