aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb
blob: db0fbf5d3325ad0fa5de2b66597edf0b239803cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require File.dirname(__FILE__) + '/../test_helper'

class <%= class_name %>Test < Test::Unit::TestCase
  fixtures :<%= table_name %>

  def setup
    $base_id = 1000001
  end

  # Replace this with your real tests.
  def test_truth
    assert true
  end
end