Skip to content

Commit

Permalink
Activate specs for issue 1215
Browse files Browse the repository at this point in the history
This PR activates specs for sass/libsass#1215
  • Loading branch information
xzyfer committed May 28, 2015
1 parent de46193 commit a57dca4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-closed-issues/issue_1215/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo { -quotes: true; -quotes: true; -quotes: true; -quotes: false; -quotes: false; foo: this-string; foo: 'this-string'; foo: "this-string"; foo: '"this-string"'; foo: "'this-string'"; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{-quotes:true;-quotes:true;-quotes:true;-quotes:false;-quotes:false;foo:this-string;foo:'this-string';foo:"this-string";foo:'"this-string"';foo:"'this-string'"}
12 changes: 12 additions & 0 deletions spec/libsass-closed-issues/issue_1215/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
foo {
-quotes: true;
-quotes: true;
-quotes: true;
-quotes: false;
-quotes: false;
foo: this-string;
foo: 'this-string';
foo: "this-string";
foo: '"this-string"';
foo: "'this-string'";
}
11 changes: 11 additions & 0 deletions spec/libsass-closed-issues/issue_1215/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
foo {
-quotes: true;
-quotes: true;
-quotes: true;
-quotes: false;
-quotes: false;
foo: this-string;
foo: 'this-string';
foo: "this-string";
foo: '"this-string"';
foo: "'this-string'"; }
12 changes: 12 additions & 0 deletions spec/libsass-closed-issues/issue_1215/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
foo {
-quotes: 'this-string' == 'this-string';
-quotes: this-string == 'this-string';
-quotes: 'this-string' == "this-string";
-quotes: 'this-string' == '"this-string"';
-quotes: '"this-string"' == "'this-string'";
foo: this-string;
foo: 'this-string';
foo: "this-string";
foo: '"this-string"';
foo: "'this-string'";
}

0 comments on commit a57dca4

Please sign in to comment.