Skip to content

Commit

Permalink
Removed async routine assertions from test case. Updated readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leekas committed May 24, 2015
1 parent 3692625 commit 9bca479
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand All @@ -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).
17 changes: 1 addition & 16 deletions test/test-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]);
});

});

0 comments on commit 9bca479

Please sign in to comment.