diff options
| author | root <root@hackathon1-repo.usersys.redhat.com> | 2008-06-19 15:36:54 -0400 |
|---|---|---|
| committer | root <root@hackathon1-repo.usersys.redhat.com> | 2008-06-19 15:36:54 -0400 |
| commit | cf796141ac01c866e81663f20699ccd56ce2d50b (patch) | |
| tree | 9061bb3c95d638bfed4d880db21e49f9f36cf1ec /cloudmasterd/spec | |
| parent | 4f244d65c5c2e4ffb4b38e00baa5f83de89c20d8 (diff) | |
| download | tools-cf796141ac01c866e81663f20699ccd56ce2d50b.tar.gz tools-cf796141ac01c866e81663f20699ccd56ce2d50b.tar.xz tools-cf796141ac01c866e81663f20699ccd56ce2d50b.zip | |
Moved the cloud daemon to cloudmasterd to give it a better name
Diffstat (limited to 'cloudmasterd/spec')
| -rw-r--r-- | cloudmasterd/spec/cloudmasterd_spec.rb | 11 | ||||
| -rw-r--r-- | cloudmasterd/spec/spec.opts | 1 | ||||
| -rw-r--r-- | cloudmasterd/spec/spec_helper.rb | 10 |
3 files changed, 22 insertions, 0 deletions
diff --git a/cloudmasterd/spec/cloudmasterd_spec.rb b/cloudmasterd/spec/cloudmasterd_spec.rb new file mode 100644 index 0000000..a52055a --- /dev/null +++ b/cloudmasterd/spec/cloudmasterd_spec.rb @@ -0,0 +1,11 @@ +require File.dirname(__FILE__) + '/spec_helper.rb' + +# Time to add your specs! +# http://rspec.info/ +describe "Place your specs here" do + + it "find this spec in spec directory" do + violated "Be sure to write your specs" + end + +end diff --git a/cloudmasterd/spec/spec.opts b/cloudmasterd/spec/spec.opts new file mode 100644 index 0000000..53607ea --- /dev/null +++ b/cloudmasterd/spec/spec.opts @@ -0,0 +1 @@ +--colour diff --git a/cloudmasterd/spec/spec_helper.rb b/cloudmasterd/spec/spec_helper.rb new file mode 100644 index 0000000..ecb7350 --- /dev/null +++ b/cloudmasterd/spec/spec_helper.rb @@ -0,0 +1,10 @@ +begin + require 'spec' +rescue LoadError + require 'rubygems' + gem 'rspec' + require 'spec' +end + +$:.unshift(File.dirname(__FILE__) + '/../lib') +require 'cloudmasterd' |
