Skip to content

Commit

Permalink
Add todo spec test for libsass issue 2054
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Apr 27, 2016
1 parent d77eeb2 commit 04bbab2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_2054/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
:not(.thing) {
color: red; }

:not(.bar) {
background: blue; }
7 changes: 7 additions & 0 deletions spec/libsass-todo-issues/issue_2054/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:not(.thing) {
color: red;
}
:not(.bar) {
@extend .thing;
background: blue;
}
2 changes: 1 addition & 1 deletion tools/gen_libsass_todo.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ruby %SPECS%\..\sass-spec.rb -g --run-todo --root "%SPECS%\libsass-todo-issues\i
%GITCMD% commit -m "Add todo spec test for libsass issue %ISSUE%" ^
-m "" -m "https://github.com/sass/libsass/issues/%ISSUE%"

echo You may push the branch to your reote repository now
echo You may push the branch to your remote repository now
if [%2] == [] GOTO :End
echo Going to push to remote %2
%GITCMD% push %2 todo/issue_%ISSUE%
Expand Down

0 comments on commit 04bbab2

Please # to comment.