Skip to content

Commit 3feb41e

Browse files
committed
Remove commented test
1 parent f579f81 commit 3feb41e

File tree

1 file changed

+0
-98
lines changed

1 file changed

+0
-98
lines changed

test/resultSet2.js

Lines changed: 0 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -64,103 +64,6 @@ describe('55. resultSet2.js', function() {
6464
done();
6565
});
6666
})
67-
68-
69-
/*beforeEach(function(done) {
70-
async.series([
71-
function(callback) {
72-
oracledb.getConnection(
73-
credential,
74-
function(err, conn) {
75-
connection = conn;
76-
callback();
77-
}
78-
);
79-
},
80-
function(callback) {
81-
connection.should.be.ok;
82-
connection.execute(
83-
createTable,
84-
function(err) {
85-
should.not.exist(err);
86-
callback();
87-
}
88-
);
89-
},
90-
function(callback) {
91-
connection.execute(
92-
insertRows,
93-
[],
94-
{ autoCommit: true },
95-
function(err) {
96-
should.not.exist(err);
97-
callback();
98-
}
99-
);
100-
},
101-
function(callback) {
102-
connection.execute(
103-
proc,
104-
[],
105-
{ autoCommit: true },
106-
function(err) {
107-
should.not.exist(err);
108-
callback();
109-
}
110-
);
111-
},
112-
function(callback) {
113-
connection.execute (
114-
proc2,
115-
[],
116-
{ autoCommit : true },
117-
function (err ) {
118-
should.not.exist ( err );
119-
callback();
120-
}
121-
);
122-
}
123-
], done);
124-
})
125-
126-
afterEach(function(done) {
127-
async.series([
128-
function(callback) {
129-
connection.execute(
130-
'DROP TABLE oracledb_employees',
131-
function(err) {
132-
should.not.exist(err);
133-
callback();
134-
}
135-
);
136-
},
137-
function(callback) {
138-
connection.execute(
139-
'DROP PROCEDURE get_emp_rs',
140-
function(err) {
141-
should.not.exist(err);
142-
callback();
143-
}
144-
);
145-
},
146-
function(callback) {
147-
connection.execute (
148-
'DROP PROCEDURE get_invalid_refcur',
149-
function ( err ) {
150-
should.not.exist ( err ) ;
151-
callback ();
152-
}
153-
);
154-
},
155-
156-
function(callback) {
157-
connection.release( function(err) {
158-
should.not.exist(err);
159-
callback();
160-
});
161-
}
162-
], done);
163-
})*/
16467

16568
describe('55.1 query a RDBMS function', function() {
16669

@@ -1032,7 +935,6 @@ describe('55. resultSet2.js', function() {
1032935
})
1033936

1034937

1035-
1036938
/********************* Helper functions *************************/
1037939
function setUp(connection, tableName, done)
1038940
{

0 commit comments

Comments
 (0)