Sha256: 8a4368cb43b0b73391ab7684fa3df5416e210c554e6d84c884386814e69a0f13

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

require 'spec_helper'

feature 'Asset pipeline' do
  scenario 'Browser requests application javascript' do
    visit asset_path('application.js')
    # save_and_open_page  # for debugging (opens page in browser)
    
    expect(page).to have_text(<<-EOF
    EnablePlaceholder jQuery plugin.
    https://github.com/marioizquierdo/enablePlaceholder
    version 1.2.2 (Oct 02, 2011)
    
    Copyright (c) 2011 Mario Izquierdo
    Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
    and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
    EOF
    )
  end # scenario
end # feature

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enableplaceholder-jquery-rails-1.2.203 spec/features/asset_pipeline_spec.rb