Sha256: 6a403a402290d308b6ea1da5d390773d03fa39a09a10215858e5eda49abd96be
Contents?: true
Size: 450 Bytes
Versions: 33
Compression:
Stored size: 450 Bytes
Contents
require "spec_helper" describe "active_metadata.yml" do context "given the active_metadata.yml parsed" do before do @envs = ['test','development'] @config = YAML.load(File.read("config/active_metadata.yml")) end it "should have a streamables config" do test_envs{|env| @config[env]['streamables'].should_not be_nil} end end def test_envs &block @envs.each do |env| yield env end end end
Version data entries
33 entries across 33 versions & 1 rubygems