From 7389a5702d322361e70692623239392c61bbbe79 Mon Sep 17 00:00:00 2001 From: kazuyoshi tlacaelel Date: Fri, 2 Mar 2012 14:51:42 -0600 Subject: Initial commit to cobalt. --- test/helper.rb | 10 ++++++++++ test/test_cobalt.rb | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 test/helper.rb create mode 100644 test/test_cobalt.rb (limited to 'test') diff --git a/test/helper.rb b/test/helper.rb new file mode 100644 index 0000000..c6912c3 --- /dev/null +++ b/test/helper.rb @@ -0,0 +1,10 @@ +require 'rubygems' +require 'test/unit' +require 'shoulda' + +$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) +$LOAD_PATH.unshift(File.dirname(__FILE__)) +require 'cobalt' + +class Test::Unit::TestCase +end diff --git a/test/test_cobalt.rb b/test/test_cobalt.rb new file mode 100644 index 0000000..63ac8c6 --- /dev/null +++ b/test/test_cobalt.rb @@ -0,0 +1,7 @@ +require 'helper' + +class TestCobalt < Test::Unit::TestCase + should "probably rename this file and start testing for real" do + flunk "hey buddy, you should probably rename this file and start testing for real" + end +end -- cgit