From 6fc3cfc2703aafb6e5e397a3fb2e5ce8095160e7 Mon Sep 17 00:00:00 2001 From: Jesse Collis Date: Thu, 24 May 2012 09:17:50 +1000 Subject: [PATCH] repaired user guide documentation, brought the directory structure up to scratch with other modules --- config/userguide.php | 13 +++++++++++++ guide/menu.unittest.md | 5 ----- guide/unittest/index.md | 3 +++ guide/unittest/menu.md | 5 +++++ .../mockobjects.md} | 0 guide/{unittest.testing.md => unittest/testing.md} | 0 .../testing_workflows.md} | 0 .../troubleshooting.md} | 0 8 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 config/userguide.php delete mode 100644 guide/menu.unittest.md create mode 100644 guide/unittest/index.md create mode 100644 guide/unittest/menu.md rename guide/{unittest.mockobjects.md => unittest/mockobjects.md} (100%) rename guide/{unittest.testing.md => unittest/testing.md} (100%) rename guide/{unittest.testing_workflows.md => unittest/testing_workflows.md} (100%) rename guide/{unittest.troubleshooting.md => unittest/troubleshooting.md} (100%) diff --git a/config/userguide.php b/config/userguide.php new file mode 100644 index 0000000..a286a26 --- /dev/null +++ b/config/userguide.php @@ -0,0 +1,13 @@ + array( + 'unittest' => array( + 'enabled' => TRUE, + 'name' => 'Unittest', + 'description' => 'Unit testing module', + 'copyright' => '© 2009-2011 Kohana Team', + ) + ) +); \ No newline at end of file diff --git a/guide/menu.unittest.md b/guide/menu.unittest.md deleted file mode 100644 index 7bbaf98..0000000 --- a/guide/menu.unittest.md +++ /dev/null @@ -1,5 +0,0 @@ -1. **UnitTest** - - [Testing](unittest.testing) - - [Mock Objects](unittest.mockobjects) - - [Troubleshooting](unittest.troubleshooting) - - [Testing workflows](unittest.testing_workflows) diff --git a/guide/unittest/index.md b/guide/unittest/index.md new file mode 100644 index 0000000..9f7e314 --- /dev/null +++ b/guide/unittest/index.md @@ -0,0 +1,3 @@ +# UnitTest + +Unit tests for Kohana \ No newline at end of file diff --git a/guide/unittest/menu.md b/guide/unittest/menu.md new file mode 100644 index 0000000..1a707cc --- /dev/null +++ b/guide/unittest/menu.md @@ -0,0 +1,5 @@ +## [UnitTest]() + - [Mock Objects](mockobjects) + - [Testing](testing) + - [Testing workflows](testing_workflows) + - [Troubleshooting](troubleshooting) diff --git a/guide/unittest.mockobjects.md b/guide/unittest/mockobjects.md similarity index 100% rename from guide/unittest.mockobjects.md rename to guide/unittest/mockobjects.md diff --git a/guide/unittest.testing.md b/guide/unittest/testing.md similarity index 100% rename from guide/unittest.testing.md rename to guide/unittest/testing.md diff --git a/guide/unittest.testing_workflows.md b/guide/unittest/testing_workflows.md similarity index 100% rename from guide/unittest.testing_workflows.md rename to guide/unittest/testing_workflows.md diff --git a/guide/unittest.troubleshooting.md b/guide/unittest/troubleshooting.md similarity index 100% rename from guide/unittest.troubleshooting.md rename to guide/unittest/troubleshooting.md