Sha256: ff388ad959eee7b7b910034abae42fcdc5e95f7782130ccfec70c90177012f6d

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

#          Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

require 'spec/helper'
spec_require 'haml/util', 'sass/engine'

Ramaze::App.options.views = 'sass'

class SpecSass < Ramaze::Controller
  map '/'
  provide :css, :Sass

  def style
%{
body
  :margin 1em

  #content
    :text-align center
}
  end
end

class SpecSassOptions < Ramaze::Controller
  map '/options'
  provide :css, :Sass
  trait :sass_options => { :style => :compact }

  def test
%{
body
  margin: 1em

  #content
    font:
      family: monospace
      size: 10pt
}
  end
end

describe Ramaze::View::Sass do
  behaves_like :mock

  should 'render inline' do
    got = get('/style.css')
    got.status.should == 200
    got['Content-Type'].should == 'text/css'
    got.body.strip.should ==
"body {
  margin: 1em; }
  body #content {
    text-align: center; }"
  end

  should 'render from file' do
    got = get('/file.css')
    got.status.should == 200
    got['Content-Type'].should == 'text/css'
    got.body.strip.should ==
"body {
  margin: 1em; }
  body #content {
    text-align: center; }"
  end

  should 'use sass options' do
    got = get('/options/test.css')
    got.status.should == 200
    got['Content-Type'].should == 'text/css'
    got.body.should.not =~ /^ +/
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
Pistos-ramaze-2009.04.08 spec/ramaze/view/sass.rb
manveru-ramaze-2009.04.01 spec/ramaze/view/sass.rb
manveru-ramaze-2009.04.08 spec/ramaze/view/sass.rb
manveru-ramaze-2009.04.18 spec/ramaze/view/sass.rb
manveru-ramaze-2009.04.22 spec/ramaze/view/sass.rb
manveru-ramaze-2009.04 spec/ramaze/view/sass.rb
manveru-ramaze-2009.05.08 spec/ramaze/view/sass.rb
manveru-ramaze-2009.05 spec/ramaze/view/sass.rb
ramaze-2009.04 spec/ramaze/view/sass.rb
ramaze-2009.05 spec/ramaze/view/sass.rb