Sha256: dca2772332afef9889becc86593009c64e3a7827bbef00a6f727b854b84c6bab

Contents?: true

Size: 751 Bytes

Versions: 24

Compression:

Stored size: 751 Bytes

Contents

require 'spec_helper'

describe Stasis::Render do

  before(:all) do
    generate
  end
  
  it "should render partials into index.html" do
    $files['index.html'].should =~ /render from root\nroot/
    $files['index.html'].should =~ /render from subdirectory\nsubdirectory/
  end

  it "should render partials into subdirectory/index.html" do
    $files['subdirectory/index.html'].should =~ /render from root\nroot/
    $files['subdirectory/index.html'].should =~ /render from subdirectory\nsubdirectory/
  end

  it "should render partials into no_controller/index.html" do
    $files['no_controller/index.html'].should =~ /render from root\nroot/
    $files['no_controller/index.html'].should =~ /render from subdirectory\nsubdirectory/
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
stasis-0.1.3 spec/stasis/plugins/render_spec.rb
stasis-0.1.2 spec/stasis/plugins/render_spec.rb
stasis-0.1.1 spec/stasis/plugins/render_spec.rb
stasis-0.1.0 spec/stasis/plugins/render_spec.rb