diff options
author | Michael Bleigh <michael@intridea.com> | 2009-09-02 21:32:57 -0400 |
---|---|---|
committer | Michael Bleigh <michael@intridea.com> | 2009-09-02 21:32:57 -0400 |
commit | a7781d369ad474d0df0d5ae6e7cc0c8eabc1f7dc (patch) | |
tree | b5bb44b681016fa54aafb78b9f324dd036554bfd /spec | |
download | hashie-a7781d369ad474d0df0d5ae6e7cc0c8eabc1f7dc.tar.gz |
Initial commit to hashie.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/hashie_spec.rb | 7 | ||||
-rw-r--r-- | spec/spec_helper.rb | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/spec/hashie_spec.rb b/spec/hashie_spec.rb new file mode 100644 index 0000000..fd8dc81 --- /dev/null +++ b/spec/hashie_spec.rb @@ -0,0 +1,7 @@ +require File.expand_path(File.dirname(__FILE__) + '/spec_helper') + +describe "Hashie" do + it "fails" do + fail "hey buddy, you should probably rename this file and start specing for real" + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..fd23375 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,9 @@ +$LOAD_PATH.unshift(File.dirname(__FILE__)) +$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) +require 'hashie' +require 'spec' +require 'spec/autorun' + +Spec::Runner.configure do |config| + +end |