Sha256: 40b4a217274b6eb805a1eec3e00fcc122cc9ca39c8d323df299ed963df2dab8f

Contents?: true

Size: 433 Bytes

Versions: 11

Compression:

Stored size: 433 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe 'CustomizableBootstrap' do
  context 'when serving css via asset pipeline' do
    subject {
      visit '/assets/application.css'
      page
    }
    its(:text) { should include '}' }
  end
  context 'when serving js via asset pipeline' do
    subject {
      visit '/assets/application.js'
      page
    }
    its(:text) { should include '}' }
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
customizable_bootstrap-0.11.1 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.11.0 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.10.5 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.10.4 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.10.3 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.10.2 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.10.1 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.9.5 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.9.4 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.9.1 spec/customizable_bootstrap_spec.rb
customizable_bootstrap-0.9.0 spec/customizable_bootstrap_spec.rb