Update test
diff --git a/test/mustache_test.dart b/test/mustache_test.dart
index c028603..7bba466 100644
--- a/test/mustache_test.dart
+++ b/test/mustache_test.dart
@@ -1,12 +1,14 @@
 library mustache_test;
 
+import 'package:unittest/unittest.dart';
 import 'package:mustache/mustache.dart';
 
-//FIXME I am not a real test :(
 main() {
-	var source = '{{#section}}_{{var}}_{{/section}}';
-	var t = new Template(source);
-	var output = t.render({"section": {"var": "bob"}});
-	print(source);
-	print(output);
+	test('1', () {
+		var output = render(
+			'{{#section}}_{{var}}_{{/section}}',
+			{"section": {"var": "bob"}}
+		);
+		expect(output, equals('_bob_'));
+	});
 }