blob: 916b5756997a3cb2e809bf9ed9af3001e25552e1 [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library dartdoc.resource_loader_test;
import 'dart:io';
import 'package:path/path.dart';
import 'package:dartdoc/resource_loader.dart' as loader;
import 'package:test/test.dart';
void main() {
group('Resource Loader', () {
test('load from packages', () async {
var contents =
await loader.loadAsString('package:dartdoc/templates/index.html');
expect(contents, isNotNull);
});
test('package root setting', () {
var root = Directory.current;
loader.packageRootPath = root.path;
expect(loader.packageRootPath, equals(root.path));
});
test('load from packages with package root setting', () async {
var root = Directory.current;
loader.packageRootPath = join(root.path, 'packages');
var contents =
await loader.loadAsString('package:dartdoc/templates/index.html');
expect(contents, isNotNull);
});
});
}