Sha256: 72b8f736f681a34742ff3a1bf416fcb2c5fd6fedcb4d3a3e9c176639370806f3
Contents?: true
Size: 464 Bytes
Versions: 2
Compression:
Stored size: 464 Bytes
Contents
require "pathname" begin require "bacon" rescue LoadError require "rubygems" require "bacon" end begin if (local_path = Pathname.new(__FILE__).dirname.join("..", "lib", "seedling.rb")).file? require local_path else require "seedling" end rescue LoadError require "rubygems" require "seedling" end Bacon.summary_on_exit describe "Spec Helper" do it "Should bring our library namespace in" do Seedling.should == Seedling end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
deathsyn-seedling-0.0.1 | spec/helper.rb |
seedling-0.0.1 | spec/helper.rb |