Skip to content

Commit

Permalink
better naming for qunit modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkaron committed Sep 9, 2016
1 parent c2eba0d commit df09f5f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"../regexp"
], this, function(QUnit, compose, construct, proto, regexp) {

QUnit.module("mu-compose/compose");
QUnit.module("mu-compose/compose#property");

QUnit.test("prototype", function (assert) {
assert.expect(1);
Expand Down Expand Up @@ -49,7 +49,7 @@
var c = new C();
});

QUnit.module("mu-compose/compose.constructors");
QUnit.module("mu-compose/compose#constructors");

QUnit.test("executed in order", function (assert) {
var count = 0;
Expand Down
4 changes: 2 additions & 2 deletions tests/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"../process"
], this, function(QUnit, process) {

QUnit.module("mu-compose/process.rules");
QUnit.module("mu-compose/process#rules");

QUnit.test("executed in context", function (assert) {
var o = {};
Expand Down Expand Up @@ -98,7 +98,7 @@
)();
});

QUnit.module("mu-compose/process.return");
QUnit.module("mu-compose/process#return");

QUnit.test("original for noop", function (assert) {
var o = {};
Expand Down
4 changes: 2 additions & 2 deletions tests/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"../transform"
], this, function(QUnit, transform) {

QUnit.module("mu-compose/transform.basic");
QUnit.module("mu-compose/transform#basic");

QUnit.test("noop", function (assert) {
var o = {
Expand Down Expand Up @@ -66,7 +66,7 @@
});


QUnit.module("mu-compose/transform.complex");
QUnit.module("mu-compose/transform#complex");

QUnit.test("transposed", function (assert) {
assert.expect(1);
Expand Down

0 comments on commit df09f5f

Please sign in to comment.