summaryrefslogtreecommitdiffstats
path: root/genome-bootstrap/spec
diff options
context:
space:
mode:
Diffstat (limited to 'genome-bootstrap/spec')
-rw-r--r--genome-bootstrap/spec/genomed_spec.rb27
-rw-r--r--genome-bootstrap/spec/spec.opts1
-rw-r--r--genome-bootstrap/spec/spec_helper.rb26
3 files changed, 54 insertions, 0 deletions
diff --git a/genome-bootstrap/spec/genomed_spec.rb b/genome-bootstrap/spec/genomed_spec.rb
new file mode 100644
index 0000000..af38873
--- /dev/null
+++ b/genome-bootstrap/spec/genomed_spec.rb
@@ -0,0 +1,27 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+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/genome-bootstrap/spec/spec.opts b/genome-bootstrap/spec/spec.opts
new file mode 100644
index 0000000..cf6add7
--- /dev/null
+++ b/genome-bootstrap/spec/spec.opts
@@ -0,0 +1 @@
+--colour \ No newline at end of file
diff --git a/genome-bootstrap/spec/spec_helper.rb b/genome-bootstrap/spec/spec_helper.rb
new file mode 100644
index 0000000..9102400
--- /dev/null
+++ b/genome-bootstrap/spec/spec_helper.rb
@@ -0,0 +1,26 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+begin
+ require 'spec'
+rescue LoadError
+ require 'rubygems'
+ gem 'rspec'
+ require 'spec'
+end
+
+$:.unshift(File.dirname(__FILE__) + '/../lib')
+require 'genomed'