Add example and add more tests and fixed function

This commit is contained in:
2021-03-24 14:17:47 +07:00
parent 33b6355bcf
commit 549cc6bddd
2 changed files with 11 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import 'package:configurable/configurable.dart' show getConfigOrNull;
import 'package:configurable/configurable.dart' show getConfigOrNull, hasConfigkey;
import 'package:configurable/dotenv_configuration_provider.dart';
import 'package:configurable/system_config.dart';
import 'package:test/test.dart';
@@ -33,6 +33,7 @@ void main() {
var result = getConfigOrNull(key, defaultValue: value);
expect(value, equals(result));
expect(true, equals(hasConfigkey(key)));
expect(value, equals(getConfigOrNull(key)));
});
}