UNPKG
xenapi
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
module to interact with Citrix XenServer api
github.com/Paca/xenapi
Paca/xenapi
xenapi
/
test
/
main.js
12 lines
(10 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
should =
require
(
'should'
);
var
xenapi =
require
(
'../lib/main'
);
describe
(
'xenapi'
,
function
(
) {
describe
(
'with no arguments'
,
function
(
) {
it
(
'returns an empty array'
,
function
(
) {
var
result =
xenapi
(); result.
should
.
eql
([]); }); }); });