From 9d08bc9ef98414ebaf215fd5b316ab00622cd74e Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 17 Jun 2010 12:04:15 -0700 Subject: [PATCH] [#4177] Generated a Contract model. --- app/models/contract.rb | 3 +++ test/unit/contract_test.rb | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 app/models/contract.rb create mode 100644 test/unit/contract_test.rb diff --git a/app/models/contract.rb b/app/models/contract.rb new file mode 100644 index 0000000..3c3f440 --- /dev/null +++ b/app/models/contract.rb @@ -0,0 +1,3 @@ +class Contract < ActiveRecord::Base + unloadable +end diff --git a/test/unit/contract_test.rb b/test/unit/contract_test.rb new file mode 100644 index 0000000..9095528 --- /dev/null +++ b/test/unit/contract_test.rb @@ -0,0 +1,4 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class ContractTest < ActiveSupport::TestCase +end