Skip to content

Commit

Permalink
Rename cursor tests to fit naming schema
Browse files Browse the repository at this point in the history
  • Loading branch information
saintedlama committed Dec 9, 2015
1 parent 865d6e6 commit d4dbdb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/test-cursor-count.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var insert = require('./insert')

insert('remove', [{
insert('cursor.count', [{
name: 'Squirtle', type: 'water'
}, {
name: 'Charmander', type: 'fire'
Expand Down
2 changes: 1 addition & 1 deletion test/test-cursor-foreach.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var pokemons = [{
name: 'Lapras', type: 'water'
}]

insert('cursor foreach', pokemons, function (db, t, done) {
insert('cursor.foreach', pokemons, function (db, t, done) {
var i = 0
db.a.find().forEach(function (err, pkm) {
t.error(err)
Expand Down
2 changes: 1 addition & 1 deletion test/test-cursor-rewind.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var insert = require('./insert')

insert('remove', [{
insert('cursor.rewind', [{
name: 'Squirtle', type: 'water'
}, {
name: 'Starmie', type: 'water'
Expand Down

0 comments on commit d4dbdb7

Please sign in to comment.