Sha256: a4261377185864c8366f723212d718f5469079c968bcefb1399fe222fb85cb8a
Contents?: true
Size: 495 Bytes
Versions: 7
Compression:
Stored size: 495 Bytes
Contents
require File.expand_path('../spec_helper', __FILE__) describe Bones do before :all do @root_dir = File.expand_path(File.join(File.dirname(__FILE__), '..')) end it "finds things releative to 'root'" do Bones.path(%w[lib bones helpers]). should == File.join(@root_dir, %w[lib bones helpers]) end it "finds things releative to 'lib'" do Bones.libpath(%w[bones helpers]). should == File.join(@root_dir, %w[lib bones helpers]) end end # describe Bones
Version data entries
7 entries across 7 versions & 1 rubygems