2016-12-03 00:19:24 +01:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2017-07-07 02:36:15 +02:00
|
|
|
@TestOn('vm')
|
|
|
|
|
2017-05-25 23:23:48 +02:00
|
|
|
import 'dart:async';
|
2016-12-03 00:19:24 +01:00
|
|
|
import 'dart:io';
|
|
|
|
|
2017-05-25 23:23:48 +02:00
|
|
|
import 'package:test/test.dart';
|
|
|
|
import 'package:test_descriptor/test_descriptor.dart' as d;
|
|
|
|
import 'package:test_process/test_process.dart';
|
2016-12-03 00:19:24 +01:00
|
|
|
|
2018-05-31 20:20:39 +02:00
|
|
|
import 'package:sass/src/util/path.dart';
|
|
|
|
|
2018-05-31 00:35:35 +02:00
|
|
|
import 'shared.dart';
|
2016-12-03 00:19:24 +01:00
|
|
|
|
|
|
|
void main() {
|
2018-05-31 00:35:35 +02:00
|
|
|
sharedTests(runSass);
|
2016-12-03 02:30:09 +01:00
|
|
|
|
2017-05-25 23:23:48 +02:00
|
|
|
test("--version prints the Sass version", () async {
|
2018-05-31 00:35:35 +02:00
|
|
|
var sass = await runSass(["--version"]);
|
2017-05-25 23:23:48 +02:00
|
|
|
expect(sass.stdout, emits(matches(new RegExp(r"^\d+\.\d+\.\d+"))));
|
|
|
|
await sass.shouldExit(0);
|
2016-12-03 02:30:09 +01:00
|
|
|
});
|
2016-12-03 00:19:24 +01:00
|
|
|
}
|
2016-12-03 02:30:09 +01:00
|
|
|
|
2018-05-31 00:35:35 +02:00
|
|
|
Future<TestProcess> runSass(Iterable<String> arguments) => TestProcess.start(
|
2018-04-24 06:20:38 +02:00
|
|
|
Platform.executable,
|
|
|
|
["--checked", p.absolute("bin/sass.dart")]..addAll(arguments),
|
|
|
|
workingDirectory: d.sandbox,
|
|
|
|
description: "sass");
|