mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 17:49:38 +01:00
fbd9cfd8a2
Co-authored-by: Natalie Weizenbaum <nweiz@google.com>
35 lines
935 B
Dart
35 lines
935 B
Dart
// Copyright 2018 Google Inc. Use of this source code is governed by an
|
|
// MIT-style license that can be found in the LICENSE file or at
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
@TestOn("vm")
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
import 'package:sass/sass.dart';
|
|
|
|
import 'utils.dart';
|
|
|
|
void main() {
|
|
late Value value;
|
|
setUp(() => value = parseValue("null"));
|
|
|
|
test("is falsy", () {
|
|
expect(value.isTruthy, isFalse);
|
|
});
|
|
|
|
test("is sassNull", () {
|
|
expect(value, equalsWithHash(sassNull));
|
|
});
|
|
|
|
test("isn't any type", () {
|
|
expect(value.assertBoolean, throwsSassScriptException);
|
|
expect(value.assertColor, throwsSassScriptException);
|
|
expect(value.assertFunction, throwsSassScriptException);
|
|
expect(value.assertMap, throwsSassScriptException);
|
|
expect(value.tryMap(), isNull);
|
|
expect(value.assertNumber, throwsSassScriptException);
|
|
expect(value.assertString, throwsSassScriptException);
|
|
});
|
|
}
|