Skip to content

Commit

Permalink
Update True
Browse files Browse the repository at this point in the history
  • Loading branch information
mirisuzanne committed Jan 6, 2017
1 parent 135fc87 commit 22e7c02
Show file tree
Hide file tree
Showing 6 changed files with 1,243 additions and 1,908 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,6 +29,6 @@
"url": "https://github.com/oddbird/susy/issues"
},
"devDependencies": {
"sass-true": "^2.0.3"
"sass-true": "^2.1.4"
}
}
3,139 changes: 1,237 additions & 1,902 deletions test/css/test.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/scss/language/susy/_background.scss
Expand Up @@ -3,7 +3,7 @@

$base-line-height: 24px;

@include test-module(Background Syntax) {
@include test-module('Background Syntax') {
$grid-background-baseline-color: #000 !global;

// Background Grid
Expand Down
2 changes: 1 addition & 1 deletion test/scss/language/susy/_rows.scss
Expand Up @@ -250,7 +250,7 @@
$test: get-location(last 50% of 8);
$expect: null;
@include assert-equal($test, $expect,
'Return null when location can't be calculated);
"Return null when location can't be calculated");
}

}
4 changes: 2 additions & 2 deletions test/scss/math/_grid.scss
Expand Up @@ -18,12 +18,12 @@

// asymmetrical
$asym: is-symmetrical($asym);
@include assert-false($asym,
@include assert-equal($asym, null,
'List is parsed as asymmetrical grid.');

// single-item list
$single: is-symmetrical($single);
@include assert-false($single,
@include assert-equal($single, null,
'Single-item list is parsed as asymmetrical grid.');
}

Expand Down
2 changes: 1 addition & 1 deletion test/scss/math/_settings.scss
Expand Up @@ -6,7 +6,7 @@
$original-defaults: $susy-defaults;

$test: map-get($susy-defaults, test);
@include assert-false($test,
@include assert-equal($test, null,
'Assert that there is no "test" default.');

@include susy-defaults((test: hello world));
Expand Down

0 comments on commit 22e7c02

Please sign in to comment.