From 632234780a5a9a4c78c297438b57f6305857b6f3 Mon Sep 17 00:00:00 2001 From: AntonioTerceiro Date: Fri, 12 Oct 2007 15:25:45 +0000 Subject: [PATCH] ActionItem14: creting a new subtype of Task: CreateOrganization --- app/models/create_organization.rb | 2 ++ test/unit/create_organization_test.rb | 7 +++++++ 2 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 app/models/create_organization.rb create mode 100644 test/unit/create_organization_test.rb diff --git a/app/models/create_organization.rb b/app/models/create_organization.rb new file mode 100644 index 0000000..28d2a46 --- /dev/null +++ b/app/models/create_organization.rb @@ -0,0 +1,2 @@ +class CreateOrganization < Task +end diff --git a/test/unit/create_organization_test.rb b/test/unit/create_organization_test.rb new file mode 100644 index 0000000..440071f --- /dev/null +++ b/test/unit/create_organization_test.rb @@ -0,0 +1,7 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class CreateOrganizationTest < Test::Unit::TestCase + + # TODO: add tests + +end -- libgit2 0.21.2