mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
13 lines
No EOL
360 B
Ruby
13 lines
No EOL
360 B
Ruby
require 'test_helper'
|
|
|
|
class CompilationTest < Test::Unit::TestCase
|
|
def test_compilation
|
|
path = 'vendor/assets/stylesheets'
|
|
%w(bootstrap bootstrap-responsive).each do |file|
|
|
engine = Sass::Engine.for_file("#{path}/#{file}.scss", syntax: :scss, load_paths: [path])
|
|
assert_nothing_raised do
|
|
engine.render
|
|
end
|
|
end
|
|
end
|
|
end |