#!/usr/bin/env ruby require File.dirname(__FILE__) + '/test_helper' class ScssTest < Test::Unit::TestCase include ScssTestHelper ## Script def test_variables assert_equal < e assert_equal "Mixins may only be defined at the root of a document.", e.message assert_equal 2, e.sass_line end def test_imports_only_at_toplevel render < e assert_equal "Import directives may only be used at the root of a document.", e.message assert_equal 2, e.sass_line end end