Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Fix exports test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomek Wiszniewski committed Jun 11, 2016
1 parent e258332 commit 9082b6a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/monopod.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,24 @@ const test = require('tape-catch');

const monopod = require('..');
const bootstrap = require('../bootstrap');
const debootstrap = require('../debootstrap');
const release = require('../release');

test('monopod exports submodules as properties', (is) => {
is.equal(
monopod.bootstrap,
bootstrap
);

is.equal(
monopod.debootstrap,
debootstrap
);

is.equal(
monopod.release,
release
);

is.end();
});

0 comments on commit 9082b6a

Please sign in to comment.