File: less_test.rb

package info (click to toggle)
libsinatra-ruby 1.0.really1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 484 kB
  • ctags: 329
  • sloc: ruby: 4,669; makefile: 36; sh: 12
file content (37 lines) | stat: -rw-r--r-- 936 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require File.dirname(__FILE__) + '/helper'
require 'less'

class LessTest < Test::Unit::TestCase
  def less_app(&block)
    mock_app {
      set :views, File.dirname(__FILE__) + '/views'
      get '/', &block
    }
    get '/'
  end

  it 'renders inline Less strings' do
    less_app { less "@white_color: #fff; #main { background-color: @white_color }"}
    assert ok?
    assert_equal "#main { background-color: #ffffff; }\n", body
  end

  it 'renders .less files in views path' do
    less_app { less :hello }
    assert ok?
    assert_equal "#main { background-color: #ffffff; }\n", body
  end

  it 'ignores the layout option' do
    less_app { less :hello, :layout => :layout2 }
    assert ok?
    assert_equal "#main { background-color: #ffffff; }\n", body
  end

  it "raises error if template not found" do
    mock_app {
      get('/') { less :no_such_template }
    }
    assert_raise(Errno::ENOENT) { get('/') }
  end
end