Sha256: 8fa2b81e5578dcdc77f77954dae51bdb38f37883684ddc897f303d6cd12728c4
Contents?: true
Size: 584 Bytes
Versions: 30
Compression:
Stored size: 584 Bytes
Contents
require 'spec_helper' describe EY::Collection::Apps do before do @collection_class = EY::Collection::Apps @collection = @collection_class.new([ EY::Model::App.from_hash("id" => 1234, "name" => "app_production"), EY::Model::App.from_hash("id" => 4321, "name" => "app_staging"), EY::Model::App.from_hash("id" => 8765, "name" => "bigapp_staging"), EY::Model::App.from_hash("id" => 4532, "name" => "app_duplicate"), EY::Model::App.from_hash("id" => 4533, "name" => "app_duplicate"), ]) end it_should_behave_like "model collections" end
Version data entries
30 entries across 30 versions & 1 rubygems