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