├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── bin ├── boxfile ├── build ├── cleanup └── release ├── lib └── nodejs.sh └── test ├── apps ├── simple-bower │ ├── .editorconfig │ ├── .gitignore │ ├── .jshintrc │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── bootstrap.js │ │ ├── config │ │ │ ├── config.js │ │ │ ├── config_dev.js │ │ │ ├── config_prod.js │ │ │ ├── config_staging.js │ │ │ └── states.js │ │ └── loader.js │ ├── bower.json │ ├── package.json │ ├── src │ │ ├── Application │ │ │ ├── AboutView.js │ │ │ ├── ApplicationController.js │ │ │ ├── ApplicationView.js │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── about.css │ │ │ │ └── app.css │ │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ │ └── tmpl │ │ │ │ ├── about.html │ │ │ │ └── app.html │ │ ├── Content │ │ │ ├── Articles │ │ │ │ ├── ArticleDetailsView.js │ │ │ │ ├── ArticlesController.js │ │ │ │ ├── ArticlesListView.js │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ └── articles.css │ │ │ │ │ ├── img │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── tmpl │ │ │ │ │ ├── details.html │ │ │ │ │ └── list.html │ │ │ ├── Help │ │ │ │ ├── HelpController.js │ │ │ │ ├── HelpView.js │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ └── help.css │ │ │ │ │ ├── img │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── tmpl │ │ │ │ │ └── help.html │ │ │ └── Home │ │ │ │ ├── HomeController.js │ │ │ │ ├── HomeView.js │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── home.css │ │ │ │ ├── img │ │ │ │ └── .gitkeep │ │ │ │ └── tmpl │ │ │ │ └── home.html │ │ ├── Footer │ │ │ ├── FooterController.js │ │ │ ├── FooterView.js │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── footer.css │ │ │ │ ├── img │ │ │ │ └── .gitkeep │ │ │ │ └── tmpl │ │ │ │ └── footer.html │ │ ├── Header │ │ │ ├── HeaderController.js │ │ │ ├── HeaderView.js │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── header.css │ │ │ │ ├── img │ │ │ │ └── .gitkeep │ │ │ │ └── tmpl │ │ │ │ └── header.html │ │ └── Menu │ │ │ ├── MenuController.js │ │ │ ├── MenuView.js │ │ │ └── assets │ │ │ ├── css │ │ │ └── menu.css │ │ │ ├── img │ │ │ └── .gitkeep │ │ │ └── tmpl │ │ │ └── menu.html │ ├── tasks │ │ ├── build.js │ │ ├── generators │ │ │ ├── controller_create.js │ │ │ ├── controller_structure │ │ │ │ └── {{name}}Controller.js │ │ │ ├── module_create.js │ │ │ ├── module_structure │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ ├── {{hyphenated_name}}.css │ │ │ │ │ │ └── {{underscoredName}}.css │ │ │ │ │ └── tmpl │ │ │ │ │ │ ├── {{hyphenated_name}}.html │ │ │ │ │ │ └── {{underscoredName}}.html │ │ │ │ ├── {{name}}Controller.js │ │ │ │ └── {{name}}View.js │ │ │ ├── view_create.js │ │ │ └── view_structure │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── {{hyphenated_name}}.css │ │ │ │ │ └── {{underscoredName}}.css │ │ │ │ └── tmpl │ │ │ │ │ ├── {{hyphenated_name}}.html │ │ │ │ │ └── {{underscoredName}}.html │ │ │ │ └── {{name}}View.js │ │ ├── install.js │ │ └── server.js │ └── web │ │ ├── favicon.ico │ │ ├── index_dev.html │ │ ├── index_prod.html │ │ └── index_staging.html ├── simple-broccoli │ ├── .bowerrc │ ├── .gitignore │ ├── Brocfile.js │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── adapters │ │ │ └── application.js │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── pretty-color.js │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── helpers │ │ │ ├── .gitkeep │ │ │ └── reverse-word.js │ │ ├── models │ │ │ └── .gitkeep │ │ ├── router.coffee │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ ├── component_test.js │ │ │ ├── helper_test.js │ │ │ └── index.js │ │ ├── styles │ │ │ └── .gitkeep │ │ ├── templates │ │ │ ├── .gitkeep │ │ │ ├── application.hbs │ │ │ ├── component-test.hbs │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ └── pretty-color.hbs │ │ │ ├── helper-test.hbs │ │ │ └── index.hbs │ │ ├── utils │ │ │ ├── .gitkeep │ │ │ └── ajax.js │ │ └── views │ │ │ └── .gitkeep │ ├── bower.json │ ├── lib │ │ └── .gitignore │ ├── package.json │ ├── public │ │ └── index.html │ ├── styles │ │ └── app.scss │ ├── tests │ │ ├── .jshintrc │ │ ├── acceptance │ │ │ ├── component_test.js │ │ │ ├── helper_test.js │ │ │ └── index_test.js │ │ ├── helpers │ │ │ ├── isolated_container.js │ │ │ └── start_app.js │ │ ├── test_helper.js │ │ ├── test_loader.js │ │ └── unit │ │ │ ├── .gitkeep │ │ │ └── routes │ │ │ └── index_test.js │ └── vendor │ │ └── loader.js ├── simple-brunch │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── application.coffee │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .gitkeep │ │ │ └── index.html │ │ ├── controllers │ │ │ ├── base │ │ │ │ └── controller.coffee │ │ │ └── home-controller.coffee │ │ ├── initialize.coffee │ │ ├── lib │ │ │ ├── utils.coffee │ │ │ └── view-helper.coffee │ │ ├── mediator.coffee │ │ ├── models │ │ │ └── base │ │ │ │ ├── collection.coffee │ │ │ │ └── model.coffee │ │ ├── routes.coffee │ │ └── views │ │ │ ├── base │ │ │ ├── collection-view.coffee │ │ │ └── view.coffee │ │ │ ├── home │ │ │ ├── header-view.coffee │ │ │ ├── home-page-view.coffee │ │ │ ├── styles │ │ │ │ ├── header.styl │ │ │ │ └── home-page.styl │ │ │ └── templates │ │ │ │ ├── header.hbs │ │ │ │ └── home.hbs │ │ │ ├── site-view.coffee │ │ │ ├── styles │ │ │ └── application.styl │ │ │ └── templates │ │ │ └── site.hbs │ ├── bower.json │ ├── brunch-config.coffee │ ├── generators │ │ ├── README.md │ │ ├── collection-view │ │ │ ├── collection-view.coffee.hbs │ │ │ └── generator.json │ │ ├── collection │ │ │ ├── collection.coffee.hbs │ │ │ └── generator.json │ │ ├── controller │ │ │ ├── controller.coffee.hbs │ │ │ └── generator.json │ │ ├── generator │ │ │ ├── generated_file.coffee.hbs │ │ │ ├── generator.json │ │ │ └── generator.json.hbs │ │ ├── model │ │ │ ├── generator.json │ │ │ └── model.coffee.hbs │ │ ├── scaffold │ │ │ ├── controller.coffee.hbs │ │ │ ├── generator.json │ │ │ └── route.coffee.hbs │ │ ├── style │ │ │ ├── generator.json │ │ │ └── style.styl.hbs │ │ ├── template │ │ │ ├── empty │ │ │ └── generator.json │ │ ├── view-template │ │ │ └── generator.json │ │ └── view │ │ │ ├── generator.json │ │ │ └── view.coffee.hbs │ └── package.json ├── simple-grunt │ ├── .gitignore │ ├── .jshintrc │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE-MIT │ ├── README.md │ ├── libs │ │ ├── jquery-loader.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ ├── package.json │ ├── src │ │ ├── .jshintrc │ │ └── tiny-pubsub.js │ ├── test │ │ ├── .jshintrc │ │ ├── tiny-pubsub.html │ │ └── tiny-pubsub_test.js │ └── tiny-pubsub.jquery.json └── simple-nodejs │ ├── package.json │ └── server.js ├── run.sh ├── run_all.sh ├── sandbox.sh ├── tests ├── integration │ └── simple-nodejs.bats └── lib │ ├── npm.bats │ └── runtime.bats └── util ├── bats ├── .gitattributes ├── .travis.yml ├── LICENSE ├── README.md ├── bin │ └── bats ├── install.sh ├── libexec │ ├── bats │ ├── bats-exec-suite │ ├── bats-exec-test │ ├── bats-format-tap-stream │ └── bats-preprocess ├── man │ ├── Makefile │ ├── README.md │ ├── bats.1 │ ├── bats.1.ronn │ ├── bats.7 │ └── bats.7.ronn ├── package.json └── test │ ├── bats.bats │ ├── fixtures │ ├── bats │ │ ├── dos_line.bats │ │ ├── empty.bats │ │ ├── environment.bats │ │ ├── failing.bats │ │ ├── failing_and_passing.bats │ │ ├── failing_helper.bats │ │ ├── failing_setup.bats │ │ ├── failing_teardown.bats │ │ ├── intact.bats │ │ ├── invalid_tap.bats │ │ ├── load.bats │ │ ├── output.bats │ │ ├── passing.bats │ │ ├── passing_and_failing.bats │ │ ├── passing_and_skipping.bats │ │ ├── passing_failing_and_skipping.bats │ │ ├── setup.bats │ │ ├── single_line.bats │ │ ├── skipped.bats │ │ ├── teardown.bats │ │ ├── test_helper.bash │ │ └── without_trailing_newline.bats │ └── suite │ │ ├── empty │ │ └── .gitkeep │ │ ├── multiple │ │ ├── a.bats │ │ └── b.bats │ │ └── single │ │ └── test.bats │ ├── suite.bats │ └── test_helper.bash ├── env.sh ├── nos.sh └── stub.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/boxfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/bin/boxfile -------------------------------------------------------------------------------- /bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/bin/build -------------------------------------------------------------------------------- /bin/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/bin/cleanup -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/bin/release -------------------------------------------------------------------------------- /lib/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/lib/nodejs.sh -------------------------------------------------------------------------------- /test/apps/simple-bower/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/.editorconfig -------------------------------------------------------------------------------- /test/apps/simple-bower/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/.gitignore -------------------------------------------------------------------------------- /test/apps/simple-bower/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/.jshintrc -------------------------------------------------------------------------------- /test/apps/simple-bower/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/LICENSE -------------------------------------------------------------------------------- /test/apps/simple-bower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/README.md -------------------------------------------------------------------------------- /test/apps/simple-bower/app/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/bootstrap.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/config/config.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/config/config_dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/config/config_dev.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/config/config_prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/config/config_prod.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/config/config_staging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/config/config_staging.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/config/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/config/states.js -------------------------------------------------------------------------------- /test/apps/simple-bower/app/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/app/loader.js -------------------------------------------------------------------------------- /test/apps/simple-bower/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/bower.json -------------------------------------------------------------------------------- /test/apps/simple-bower/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/package.json -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/AboutView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/AboutView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/ApplicationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/ApplicationController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/ApplicationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/ApplicationView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/assets/css/about.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/assets/css/app.css -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/assets/img/logo.png -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/assets/tmpl/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/assets/tmpl/about.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Application/assets/tmpl/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Application/assets/tmpl/app.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/ArticleDetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/ArticleDetailsView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/ArticlesController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/ArticlesController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/ArticlesListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/ArticlesListView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/assets/css/articles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/assets/css/articles.css -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/assets/tmpl/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/assets/tmpl/details.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Articles/assets/tmpl/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Articles/assets/tmpl/list.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Help/HelpController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Help/HelpController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Help/HelpView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Help/HelpView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Help/assets/css/help.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Help/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Help/assets/tmpl/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Help/assets/tmpl/help.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Home/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Home/HomeController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Home/HomeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Home/HomeView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Home/assets/css/home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Home/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Content/Home/assets/tmpl/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Content/Home/assets/tmpl/home.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Footer/FooterController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Footer/FooterController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Footer/FooterView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Footer/FooterView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Footer/assets/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Footer/assets/css/footer.css -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Footer/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Footer/assets/tmpl/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Footer/assets/tmpl/footer.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Header/HeaderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Header/HeaderController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Header/HeaderView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Header/HeaderView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Header/assets/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Header/assets/css/header.css -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Header/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Header/assets/tmpl/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Header/assets/tmpl/header.html -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Menu/MenuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Menu/MenuController.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Menu/MenuView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Menu/MenuView.js -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Menu/assets/css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Menu/assets/css/menu.css -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Menu/assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/src/Menu/assets/tmpl/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/src/Menu/assets/tmpl/menu.html -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/build.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/controller_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/controller_create.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/controller_structure/{{name}}Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/controller_structure/{{name}}Controller.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/module_create.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/assets/css/{{hyphenated_name}}.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/assets/css/{{underscoredName}}.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/assets/tmpl/{{hyphenated_name}}.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/assets/tmpl/{{underscoredName}}.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/{{name}}Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/module_structure/{{name}}Controller.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/module_structure/{{name}}View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/module_structure/{{name}}View.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/view_create.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_structure/assets/css/{{hyphenated_name}}.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_structure/assets/css/{{underscoredName}}.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_structure/assets/tmpl/{{hyphenated_name}}.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_structure/assets/tmpl/{{underscoredName}}.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/generators/view_structure/{{name}}View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/generators/view_structure/{{name}}View.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/install.js -------------------------------------------------------------------------------- /test/apps/simple-bower/tasks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/tasks/server.js -------------------------------------------------------------------------------- /test/apps/simple-bower/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/web/favicon.ico -------------------------------------------------------------------------------- /test/apps/simple-bower/web/index_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/web/index_dev.html -------------------------------------------------------------------------------- /test/apps/simple-bower/web/index_prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/web/index_prod.html -------------------------------------------------------------------------------- /test/apps/simple-bower/web/index_staging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-bower/web/index_staging.html -------------------------------------------------------------------------------- /test/apps/simple-broccoli/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | tmp 4 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/Brocfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/Brocfile.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/LICENSE -------------------------------------------------------------------------------- /test/apps/simple-broccoli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/README.md -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/adapters/application.js: -------------------------------------------------------------------------------- 1 | export default DS.FixtureAdapter.extend(); 2 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/app.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/components/pretty-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/components/pretty-color.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/helpers/reverse-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/helpers/reverse-word.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/router.coffee -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/routes/component_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/routes/component_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/routes/helper_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/routes/helper_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/routes/index.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/styles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |

Welcome to Ember.js

2 | 3 | {{outlet}} 4 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/component-test.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/templates/component-test.hbs -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/components/pretty-color.hbs: -------------------------------------------------------------------------------- 1 | Pretty Color: {{name}} 2 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/helper-test.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/templates/helper-test.hbs -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/templates/index.hbs -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/app/utils/ajax.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/app/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/bower.json -------------------------------------------------------------------------------- /test/apps/simple-broccoli/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/package.json -------------------------------------------------------------------------------- /test/apps/simple-broccoli/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/public/index.html -------------------------------------------------------------------------------- /test/apps/simple-broccoli/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/styles/app.scss -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/.jshintrc -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/acceptance/component_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/acceptance/component_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/acceptance/helper_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/acceptance/helper_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/acceptance/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/acceptance/index_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/helpers/isolated_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/helpers/isolated_container.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/helpers/start_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/helpers/start_app.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/test_helper.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/test_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/test_loader.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-broccoli/tests/unit/routes/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/tests/unit/routes/index_test.js -------------------------------------------------------------------------------- /test/apps/simple-broccoli/vendor/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-broccoli/vendor/loader.js -------------------------------------------------------------------------------- /test/apps/simple-brunch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/.gitignore -------------------------------------------------------------------------------- /test/apps/simple-brunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/README.md -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/application.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/assets/index.html -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/controllers/base/controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/controllers/base/controller.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/controllers/home-controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/controllers/home-controller.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/initialize.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/initialize.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/lib/utils.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/lib/view-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/lib/view-helper.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/mediator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/mediator.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/models/base/collection.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/models/base/collection.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/models/base/model.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/models/base/model.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/routes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/routes.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/base/collection-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/base/collection-view.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/base/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/base/view.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/header-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/header-view.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/home-page-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/home-page-view.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/styles/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/styles/header.styl -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/styles/home-page.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/styles/home-page.styl -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/templates/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/templates/header.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/home/templates/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/home/templates/home.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/site-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/site-view.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/styles/application.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/styles/application.styl -------------------------------------------------------------------------------- /test/apps/simple-brunch/app/views/templates/site.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/app/views/templates/site.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/bower.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/brunch-config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/brunch-config.coffee -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/README.md -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/collection-view/collection-view.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/collection-view/collection-view.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/collection-view/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/collection-view/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/collection/collection.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/collection/collection.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/collection/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/collection/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/controller/controller.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/controller/controller.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/controller/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/controller/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/generator/generated_file.coffee.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/generator/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/generator/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/generator/generator.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/generator/generator.json.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/model/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/model/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/model/model.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/model/model.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/scaffold/controller.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/scaffold/controller.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/scaffold/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/scaffold/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/scaffold/route.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/scaffold/route.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/style/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/style/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/style/style.styl.hbs: -------------------------------------------------------------------------------- 1 | @import 'nib' 2 | -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/template/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/template/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/template/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/view-template/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/view-template/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/view/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/view/generator.json -------------------------------------------------------------------------------- /test/apps/simple-brunch/generators/view/view.coffee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/generators/view/view.coffee.hbs -------------------------------------------------------------------------------- /test/apps/simple-brunch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-brunch/package.json -------------------------------------------------------------------------------- /test/apps/simple-grunt/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /test/apps/simple-grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/.jshintrc -------------------------------------------------------------------------------- /test/apps/simple-grunt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/apps/simple-grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/Gruntfile.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/LICENSE-MIT -------------------------------------------------------------------------------- /test/apps/simple-grunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/README.md -------------------------------------------------------------------------------- /test/apps/simple-grunt/libs/jquery-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/libs/jquery-loader.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/libs/jquery/jquery.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/libs/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/libs/qunit/qunit.css -------------------------------------------------------------------------------- /test/apps/simple-grunt/libs/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/libs/qunit/qunit.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/package.json -------------------------------------------------------------------------------- /test/apps/simple-grunt/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/src/.jshintrc -------------------------------------------------------------------------------- /test/apps/simple-grunt/src/tiny-pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/src/tiny-pubsub.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/test/.jshintrc -------------------------------------------------------------------------------- /test/apps/simple-grunt/test/tiny-pubsub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/test/tiny-pubsub.html -------------------------------------------------------------------------------- /test/apps/simple-grunt/test/tiny-pubsub_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/test/tiny-pubsub_test.js -------------------------------------------------------------------------------- /test/apps/simple-grunt/tiny-pubsub.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-grunt/tiny-pubsub.jquery.json -------------------------------------------------------------------------------- /test/apps/simple-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-nodejs/package.json -------------------------------------------------------------------------------- /test/apps/simple-nodejs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/apps/simple-nodejs/server.js -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/run_all.sh -------------------------------------------------------------------------------- /test/sandbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/sandbox.sh -------------------------------------------------------------------------------- /test/tests/integration/simple-nodejs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/tests/integration/simple-nodejs.bats -------------------------------------------------------------------------------- /test/tests/lib/npm.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/tests/lib/npm.bats -------------------------------------------------------------------------------- /test/tests/lib/runtime.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/tests/lib/runtime.bats -------------------------------------------------------------------------------- /test/util/bats/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/.gitattributes -------------------------------------------------------------------------------- /test/util/bats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/.travis.yml -------------------------------------------------------------------------------- /test/util/bats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/LICENSE -------------------------------------------------------------------------------- /test/util/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/README.md -------------------------------------------------------------------------------- /test/util/bats/bin/bats: -------------------------------------------------------------------------------- 1 | ../libexec/bats -------------------------------------------------------------------------------- /test/util/bats/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/install.sh -------------------------------------------------------------------------------- /test/util/bats/libexec/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/libexec/bats -------------------------------------------------------------------------------- /test/util/bats/libexec/bats-exec-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/libexec/bats-exec-suite -------------------------------------------------------------------------------- /test/util/bats/libexec/bats-exec-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/libexec/bats-exec-test -------------------------------------------------------------------------------- /test/util/bats/libexec/bats-format-tap-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/libexec/bats-format-tap-stream -------------------------------------------------------------------------------- /test/util/bats/libexec/bats-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/libexec/bats-preprocess -------------------------------------------------------------------------------- /test/util/bats/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/Makefile -------------------------------------------------------------------------------- /test/util/bats/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/README.md -------------------------------------------------------------------------------- /test/util/bats/man/bats.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/bats.1 -------------------------------------------------------------------------------- /test/util/bats/man/bats.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/bats.1.ronn -------------------------------------------------------------------------------- /test/util/bats/man/bats.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/bats.7 -------------------------------------------------------------------------------- /test/util/bats/man/bats.7.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/man/bats.7.ronn -------------------------------------------------------------------------------- /test/util/bats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/package.json -------------------------------------------------------------------------------- /test/util/bats/test/bats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/bats.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/dos_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/dos_line.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/empty.bats: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/environment.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/environment.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/failing.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/failing_and_passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/failing_and_passing.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/failing_helper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/failing_helper.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/failing_setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/failing_setup.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/failing_teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/failing_teardown.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/intact.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/intact.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/invalid_tap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/invalid_tap.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/load.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/load.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/output.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/passing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/passing.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/passing_and_failing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/passing_and_failing.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/passing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/passing_and_skipping.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/passing_failing_and_skipping.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/passing_failing_and_skipping.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/setup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/setup.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/single_line.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/single_line.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/skipped.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/skipped.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/teardown.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/teardown.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/bats/test_helper.bash -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/bats/without_trailing_newline.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/suite/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/suite/multiple/a.bats: -------------------------------------------------------------------------------- 1 | @test "truth" { 2 | true 3 | } 4 | -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/suite/multiple/b.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/suite/multiple/b.bats -------------------------------------------------------------------------------- /test/util/bats/test/fixtures/suite/single/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/fixtures/suite/single/test.bats -------------------------------------------------------------------------------- /test/util/bats/test/suite.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/suite.bats -------------------------------------------------------------------------------- /test/util/bats/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/bats/test/test_helper.bash -------------------------------------------------------------------------------- /test/util/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/env.sh -------------------------------------------------------------------------------- /test/util/nos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/nos.sh -------------------------------------------------------------------------------- /test/util/stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanobox-io/nanobox-engine-nodejs/HEAD/test/util/stub.sh --------------------------------------------------------------------------------