rename syntax tests to transformation

This commit is contained in:
Sebastian McKenzie 2014-10-25 09:09:55 +11:00
parent 65ba4d35e7
commit 8136b4c40b
371 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
var fs = require("fs"); var fs = require("fs");
var _ = require("lodash"); var _ = require("lodash");
var fixturesDir = __dirname + "/fixtures/syntax"; var fixturesDir = __dirname + "/fixtures/transformation";
var humanise = function (val) { var humanise = function (val) {
return val.replace(/-/g, " "); return val.replace(/-/g, " ");
@ -17,7 +17,7 @@ var readFile = function (filename) {
exports.run = function (suites, transform, assert) { exports.run = function (suites, transform, assert) {
_.each(suites, function (testSuite) { _.each(suites, function (testSuite) {
suite("syntax/" + testSuite.title, function () { suite("transformation/" + testSuite.title, function () {
_.each(testSuite.tests, function (task) { _.each(testSuite.tests, function (task) {
test(task.title, function () { test(task.title, function () {
var run = function () { var run = function () {

Some files were not shown because too many files have changed in this diff Show More