Skip to content

Commit

Permalink
Update e2e_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
yosssi committed Sep 17, 2014
1 parent 7ee562c commit a71ff9a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
func Test_e2e(t *testing.T) {
var wg sync.WaitGroup

for i := 1; i <= 9; i++ {
for i := 1; i <= 10; i++ {
idx := strconv.Itoa(i)

gcssPath := "test/e2e/actual/" + strings.Repeat("0", 4-len(idx)) + idx + ".gcss"
Expand Down
42 changes: 42 additions & 0 deletions test/e2e/actual/0010.gcss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// At-rules which include variables
$base-color: #000
$font-color: #777
$h1-color: #333
$margin: 5cm
$font: "Example Font"

@media screen, projection
html
background: $base-color
color: $font-color
body
max-width: 35em
margin: 0 auto
h1
color: $h1-color

@media print
html
background: $base-color
color: $font-color
body
max-width: 35em
margin: 0 auto
h1
color: $h1-color

@page
margin: $margin

@page :left
margin-left: $margin

@page :right
margin-right: $margin

@page :first
margin-top: $margin

@font-face
font-family: $font
src: url("http://www.example.com/fonts/example")
1 change: 1 addition & 0 deletions test/e2e/expected/0010.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a71ff9a

Please sign in to comment.