mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-03 18:17:45 +01:00
6ad67a6f28
This un-reverts pull request #320 from sass/remove-path-workaround,
which was reverted by commit 0fb5d25ee2
.
32 lines
916 B
Dart
32 lines
916 B
Dart
// 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.
|
|
|
|
@TestOn('vm')
|
|
|
|
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:path/path.dart' as p;
|
|
import 'package:test/test.dart';
|
|
import 'package:test_descriptor/test_descriptor.dart' as d;
|
|
import 'package:test_process/test_process.dart';
|
|
|
|
import 'shared.dart';
|
|
|
|
void main() {
|
|
sharedTests(runSass);
|
|
|
|
test("--version prints the Sass version", () async {
|
|
var sass = await runSass(["--version"]);
|
|
expect(sass.stdout, emits(matches(new RegExp(r"^\d+\.\d+\.\d+"))));
|
|
await sass.shouldExit(0);
|
|
});
|
|
}
|
|
|
|
Future<TestProcess> runSass(Iterable<String> arguments) => TestProcess.start(
|
|
Platform.executable,
|
|
["--checked", p.absolute("bin/sass.dart")]..addAll(arguments),
|
|
workingDirectory: d.sandbox,
|
|
description: "sass");
|