2018-01-13 02:08:53 +01:00
|
|
|
// 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';
|
|
|
|
|
2019-11-06 01:28:26 +01:00
|
|
|
void main() {
|
2018-01-13 02:08:53 +01:00
|
|
|
group("true", () {
|
|
|
|
Value value;
|
|
|
|
setUp(() => value = parseValue("true"));
|
|
|
|
|
|
|
|
test("is truthy", () {
|
|
|
|
expect(value.isTruthy, isTrue);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("is sassTrue", () {
|
|
|
|
expect(value, equalsWithHash(sassTrue));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("is a boolean", () {
|
|
|
|
expect(value.assertBoolean(), equals(value));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("isn't any other type", () {
|
|
|
|
expect(value.assertColor, throwsSassScriptException);
|
|
|
|
expect(value.assertFunction, throwsSassScriptException);
|
|
|
|
expect(value.assertMap, throwsSassScriptException);
|
|
|
|
expect(value.assertNumber, throwsSassScriptException);
|
|
|
|
expect(value.assertString, throwsSassScriptException);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group("false", () {
|
|
|
|
Value value;
|
|
|
|
setUp(() => value = parseValue("false"));
|
|
|
|
|
|
|
|
test("is falsey", () {
|
|
|
|
expect(value.isTruthy, isFalse);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("is sassFalse", () {
|
|
|
|
expect(value, equalsWithHash(sassFalse));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("is a boolean", () {
|
|
|
|
expect(value.assertBoolean(), equals(value));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("isn't any other type", () {
|
|
|
|
expect(value.assertColor, throwsSassScriptException);
|
|
|
|
expect(value.assertFunction, throwsSassScriptException);
|
|
|
|
expect(value.assertMap, throwsSassScriptException);
|
|
|
|
expect(value.assertNumber, throwsSassScriptException);
|
|
|
|
expect(value.assertString, throwsSassScriptException);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group("new SassBoolean()", () {
|
|
|
|
test("returns sassTrue", () {
|
2018-11-16 00:16:24 +01:00
|
|
|
expect(SassBoolean(true), equals(sassTrue));
|
2018-01-13 02:08:53 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test("returns sassFalse", () {
|
2018-11-16 00:16:24 +01:00
|
|
|
expect(SassBoolean(false), equals(sassFalse));
|
2018-01-13 02:08:53 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|