Sha256: 243202dceb6f78dac4ee7dfc391ea10ab397bd80e4bf34dc39f31a4223f2dc0b
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
require "rubygems" require 'bacon' require 'mocha' require File.expand_path(File.join(__FILE__.split('/spec').first, 'turbine-core.rb')) PostType.preferred_order = [Video, Audio, Photo, Chat, Review, Link, Quote, Article] ### run specs with `bacon spec/**/*.rb spec/*.rb` # from 1 to 10 how likely, 1 being not very likely and 10 being all the time def do_i?(i = 5) rand(500) < 50 * i end ## # Hash additions. # # From # * http://wincent.com/knowledge-base/Fixtures_considered_harmful%3F # * Neil Rahilly class Hash ## # Filter keys out of a Hash. # # { :a => 1, :b => 2, :c => 3 }.except(:a) # => { :b => 2, :c => 3 } def except(*keys) self.reject { |k,v| keys.include?(k || k.to_sym) } end ## # Override some keys. # # { :a => 1, :b => 2, :c => 3 }.with(:a => 4) # => { :a => 4, :b => 2, :c => 3 } def with(overrides = {}) self.merge overrides end ## # Returns a Hash with only the pairs identified by +keys+. # # { :a => 1, :b => 2, :c => 3 }.only(:a) # => { :a => 1 } def only(*keys) self.reject { |k,v| !keys.include?(k || k.to_sym) } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
myobie-turbine-core-0.1.0 | spec/spec_helper.rb |