First draft

This commit is contained in:
Anatol Broder 2014-02-04 01:26:28 +01:00
parent 1e6847c43f
commit e36f9d7da8
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1 @@
.half { width: 50%; }

View File

@ -0,0 +1,4 @@
---
---
@import "grid";

View File

@ -104,4 +104,14 @@ CSS
assert_equal css_output, converter.convert(scss_content) assert_equal css_output, converter.convert(scss_content)
end end
end end
context "importing partials" do
setup do
content = ""
end
should "import SCSS" do
assert_equal ".half { width: 30%; }", content
end
end
end end