diff --git a/README.md b/README.md index 1fa10de..05f22a9 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,14 @@ npm install -g yo ##### What is Yeoman Generators? -Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, like this Opencart generator do. +Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create - here which is of course the Opencart application. ##### What is Opencart? Did You just ask that?? You are in the wrong place mate! -Anyway, OpenCart is a free open source PHP-based e-commerce solution. providing a professional and reliable foundation from which to build a successful online store. OpenCart is designed feature rich, easy to use, search engine friendly and with a visually appealing interface. [Find more here](http://www.opencart.com). +Anyway, OpenCart is a free open source PHP-based e-commerce solution. providing a professional and reliable foundation from which to build a successful online store. OpenCart is designed feature rich, easy to use, search engine friendly and with a visually appealing interface. [Find out more here](http://www.opencart.com). + ## How? @@ -47,6 +48,7 @@ yo opencart Which creates an Opencart application scaffold on-the-go! + ___ (c) 2015 Leekas Shep. Licensed under [MIT](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/test/test-app.js b/test/test-app.js index 1f56f19..d68f5f5 100644 --- a/test/test-app.js +++ b/test/test-app.js @@ -14,26 +14,11 @@ describe('opencart:app', function () { .on('end', done); }); - it('creates files', function (done) { + it('creates project tempalate files', function (done) { assert.file([ '.editorconfig', '.jshintrc' ]); }); - after(function (done) { - assert.file([ - 'admin/', - 'catalog/', - 'image/', - 'install/', - 'system/', - '.htaccess.txt', - 'config-dist.php', - 'crossdomain.xml', - 'index.php', - 'php.ini' - ]); - }); - }); \ No newline at end of file