32 lines
958 B
Dart
32 lines
958 B
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
import 'package:angel_framework/angel_framework.dart';
|
|
import 'package:angel_mustache/angel_mustache.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
main() async {
|
|
Angel angel = new Angel();
|
|
await angel.configure(mustache(new Directory('./test')));
|
|
|
|
test('can render templates', () async {
|
|
var hello = await angel.viewGenerator('hello', {'name': 'world'});
|
|
var bar = await angel.viewGenerator('foo/bar', {'framework': 'angel'});
|
|
|
|
expect(hello, equals("Hello, world!"));
|
|
expect(bar, equals("angel_framework"));
|
|
});
|
|
|
|
test('throws if view is not found', () {
|
|
expect(
|
|
new Future(() async {
|
|
var fails = await angel.viewGenerator(
|
|
'fail', {'this_should': 'fail'});
|
|
print(fails);
|
|
}), throws);
|
|
});
|
|
|
|
test("partials", () async {
|
|
var withPartial = await angel.viewGenerator('with-partial');
|
|
expect(withPartial, equals("Hello, world!"));
|
|
});
|
|
}
|