Skip to content

Commit

Permalink
Updated test directory to have better organization
Browse files Browse the repository at this point in the history
  • Loading branch information
supernomad committed Jun 20, 2015
1 parent b565b91 commit cbeea36
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
localCache = require('./../libs/caching/localCache');
localCache = require('./../../../libs/caching/localCache');

describe('localCache.js', function () {
describe('#create', function () {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
errorHelper = require('./../libs/helpers/errorHelper');
errorHelper = require('./../../../libs/helpers/errorHelper');

describe('errorHelper.js', function() {
describe('#genericErrorHandler', function() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
guidHelper = require('./../libs/helpers/guidHelper');
guidHelper = require('./../../../libs/helpers/guidHelper');

describe('guidHelper.js', function() {
describe('#newGuid', function() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
stringHelper = require('./../libs/helpers/stringHelper');
stringHelper = require('./../../../libs/helpers/stringHelper');

describe('stringHelper.js', function() {
describe('#stripTrailingSlashes', function() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
typeHelper = require('./../libs/helpers/typeHelper');
typeHelper = require('./../../../libs/helpers/typeHelper');

describe('typeHelper', function(){
describe('#doesExist', function(){
Expand Down
2 changes: 1 addition & 1 deletion test/io-tests.js → test/libs/io-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global describe, it , Buffer */
var io = require('./../libs/io'),
var io = require('./../../libs/io'),
should = require('should'),
tempFile = "./tmp/tests/tmp.temp",
renameFile = "./tmp/tests/temp-rename.temp";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */
var should = require('should'),
validators = require('./../libs/validators/chunked-upload-validators.js');
validators = require('./../../../libs/validators/chunked-upload-validators.js');

describe("chunked-upload-validators.js", function () {
describe("#valid", function () {
Expand Down
Empty file.

0 comments on commit cbeea36

Please sign in to comment.