Skip to content

Commit

Permalink
re-enable test
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed May 19, 2015
1 parent 574fa86 commit 36a86fb
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions test/grinder_sdk_test.dart
Expand Up @@ -57,15 +57,12 @@ main() {
expect(ctx.isFailed, false);
});

// See #166.
// test('Pub.list', () {
// return mockContext.runZoned(() {
// expect(Pub.global._list(), isNotNull);
// }).then((_) {
// expect(mockContext.logBuffer, isNotEmpty);
// expect(mockContext.isFailed, false);
// });
// });
grinderTest('Pub.list', () {
expect(Pub.global.list(), isNotNull);
}, (ctx) {
expect(ctx.logBuffer, isEmpty);
expect(ctx.isFailed, false);
});

grinderTest('Pub.isActivated', () {
expect(Pub.global.isActivated('foo'), false);
Expand Down

0 comments on commit 36a86fb

Please sign in to comment.