reagent / simple-gem

Make gems. Simple.

This URL has Read+Write access

simple-gem / templates / test.rb.erb
100644 13 lines (8 sloc) 0.264 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.dirname(__FILE__) + '/../test_helper'
 
class <%= self.module_name %>Test < Test::Unit::TestCase
 
  describe "An instance of the <%= self.module_name %> class" do
 
    it "should flunk" do
      flunk "Please provide some tests"
    end
    
  end
 
end