Sha256: e28716d806a287db0db84562b8ba8a99acb59353dd418ad98ef5258df7c4ed99
Contents?: true
Size: 638 Bytes
Versions: 30
Compression:
Stored size: 638 Bytes
Contents
require 'spec_helper' describe EY::Collection::Environments do before do @collection_class = EY::Collection::Environments @collection = @collection_class.new([ EY::Model::Environment.from_hash("id" => 1234, "name" => "app_production"), EY::Model::Environment.from_hash("id" => 4321, "name" => "app_staging"), EY::Model::Environment.from_hash("id" => 8765, "name" => "bigapp_staging"), EY::Model::Environment.from_hash("id" => 4532, "name" => "app_duplicate"), EY::Model::Environment.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